Files: 0e4c66532895ce03fe710648bbd4aee0648ed182 / authors.html
891 bytesRaw
1 | --- |
2 | layout: page |
3 | title: Penulis |
4 | --- |
5 | |
6 | <style> |
7 | .pic { |
8 | float: left; |
9 | width: 120px; |
10 | padding-right: 0 ; |
11 | padding-top: 20px ; |
12 | } |
13 | |
14 | .pic img { |
15 | border-radius: 50% ; |
16 | -webkit-border-radius: 50% ; |
17 | -moz-border-radius: 50% ; |
18 | width: 100px; |
19 | height: 100px; |
20 | |
21 | } |
22 | |
23 | .bio { |
24 | float: left; |
25 | width: 558px; |
26 | padding-left: 0 ; |
27 | text-align: justify; |
28 | } |
29 | |
30 | .clear { |
31 | clear: both; |
32 | margin-bottom: 30px; |
33 | } |
34 | </style> |
35 | |
36 | |
37 | |
38 | {% for author_item in site.authors %} |
39 | {% assign key = author_item[0] %} |
40 | {% assign author = author_item[1] %} |
41 | |
42 | <div class="clear"></div> |
43 | |
44 | <div class="pic"> |
45 | <a name="{{ key }}" /> |
46 | <img src="{{ author.pic }}" /> |
47 | </div> |
48 | <div class="bio"> |
49 | <p> |
50 | {{ author.full_bio_ms }} |
51 | <p> |
52 | <p style="font-style:italic"> |
53 | {{ author.full_bio_en }} |
54 | </p> |
55 | </div> |
56 | {% endfor %} |
Built with git-ssb-web