git ssb

0+

k4ml / belajar-js



Tree: 4c4eb6d05a28e125b970b8102cd462dfd402a256

Files: 4c4eb6d05a28e125b970b8102cd462dfd402a256 / authors.html

891 bytesRaw
1---
2layout: page
3title: Penulis
4---
5
6<style>
7.pic {
8 float: left;
9 width: 120px;
10 padding-right: 0 !important;
11 padding-top: 20px !important;
12}
13
14.pic img {
15 border-radius: 50% !important;
16 -webkit-border-radius: 50% !important;
17 -moz-border-radius: 50% !important;
18 width: 100px;
19 height: 100px;
20
21}
22
23.bio {
24 float: left;
25 width: 558px;
26 padding-left: 0 !important;
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