-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
57 lines (52 loc) · 1.46 KB
/
about.html
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
48
49
50
51
52
53
54
55
56
57
---
title: About
layout: default
---
<section class="about section-with-gap">
<h1>About</h1>
<article class="bubble">
<div class="body">
<p>
<b>WriteGames.com</b> lorem ipsum dolor sit, amet consectetur
adipisicing elit. Ut possimus repudiandae impedit dolore omnis
soluta voluptatem est fuga quae rerum. Voluptate accusantium,
eligendi consequuntur autem debitis nostrum cum perferendis id.
</p>
<p>
Chase ball of string eat plants, meow, and throw up because I
ate plants going to catch the red dot today going to catch the
red dot today. I could pee on this if I had the energy. Chew
iPad power cord steal the warm chair right after you get up for
purr for no reason leave hair everywhere, decide to want nothing
to do with my owner today.
</p>
</div>
</article>
</section>
<section class="authors section-with-gap">
<h1>Staff</h1>
<ul>
{% for author in site.author %} {% assign post_count = site.posts |
where: 'author', author.short_name | size %}
<li>
<a href="{{ author.url }}" class="bubble author-bio">
<img
src="/img{{ author.url }}.png"
alt="{{ author.name }}'s Avatar"
/>
<div class="body">
<h1>{{ author.name }}</h1>
<p>{{ author.position }}</p>
{{ author.content }}
<p class="stats">
<span
>{{ post_count }} Post{% unless post_count == 1
%}s{% endunless %}</span
>
</p>
</div>
</a>
</li>
{% endfor %}
</ul>
</section>