-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvalkyr.njk
More file actions
executable file
·47 lines (47 loc) · 1015 Bytes
/
valkyr.njk
File metadata and controls
executable file
·47 lines (47 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<div class="vkr-url-wrapper">
<style>
.vkr-url-wrapper {
padding: 10px;
border-radius: 5px;
border: 1px solid;
border-color: #eee #ddd #bbb;
box-shadow: rgba(0,0,0,.14) 0 1px 3px;
margin-bottom: 10px;
display: flex;
}
.img-link {
width: 100px;
height: 100px;
margin-right: 10px;
}
.vkr-url-wrapper .desc-wrapper > hr {
margin: 10px 0;
height: 1px;
}
.vkr-url-wrapper .avatar {
border: solid 1px #eee;
box-shadow: none!important;
margin: 0;
}
.vkr-url-wrapper h2 {
border: none;
margin: 0;
padding: 0;
}
.vkr-url-wrapper .desc-wrapper {
flex: 1;
}
.vkr-url-wrapper .desc-wrapper a {
font-size: 22px;
font-weight: 700;
}
</style>
{% if avatar %}
<a class="img-link" href="{{ url }}"><img class="avatar" width="100%" height="100%" src="{{ avatar }}" ></a>
{% endif %}
<div class="desc-wrapper">
<a href="{{ url }}">{{ title }}</a>
<hr />
<div class="desc">{{ desc }}</div>
</div>
</div>