-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (86 loc) · 2.83 KB
/
index.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
layout: default
---
<div class="main-header">
<div class="container">
{% include header.html mode="dark" %}
</div>
<div class="container">
<div class="row m-y-3 p-x-3 p-x-0-sm" />
<div class="col-md-2 text-center text-md-right p-b-1-sm">
<span itemprop="image" class="p-r-05 p-y-1">
<img
class="img-circle border-light-grey"
style="height: 72px;"
src="{{ site.github.url }}/img/DayOne-large.jpg"
alt="Picture"/>
</span>
</div>
<div class="col-md-10 text-center">
<div>
<strong>One Month Project</strong> - Experiment with 3 developers building 3 mobile apps in 30 days
</div>
<div class="small m-t-1">Get in touch:
<a href="https://twitter.com/intent/tweet?screen_name=1mthproject">@1mthproject</a></div>
</div>
</div>
</div>
</div>
<div class="container">
<h4 class="m-y-3 text-center"></h4>
<div class="row">
{% for post in site.posts offset:0 limit: 1%}
<div class="col-md-12 m-b-3">
<div class="border-underline" style="margin-bottom: 10px;">
<a class="post-link link-black" href="{{ post.url | prepend: site.github.url }}">
<h4 class="ellipsis">{{ post.title }}</h4>
</a>
</div>
<div class="post">
{{ post.content | strip_html | truncatewords:50}}
<div class="text-muted text-small">{{ post.date | date: "%b %-d, %Y" }}</div>
{% if post.author %}
{% include author-line-small.html author=post.author post=post%}
{% elsif site.author %}
{% include author-line-small.html author=site.author post=post%}
{% endif %}
</div>
{% endfor %}
</div>
<div class="row">
{% for post in site.posts offset:1 limit:2 %}
<div class="col-md-6 m-b-3">
<div class="border-underline" style="margin-bottom: 10px;">
<a class="post-link link-black" href="{{ post.url | prepend: site.github.url }}">
<h4 class="ellipsis">{{ post.title }}</h4>
</a>
</div>
<div class="post">
{{ post.content | strip_html | truncatewords:50}}
<div class="text-muted text-small">{{ post.date | date: "%b %-d, %Y" }}</div>
{% if post.author %}
{% include author-line-small.html author=post.author post=post%}
{% elsif site.author %}
{% include author-line-small.html author=site.author post=post%}
{% endif %}
</div>
{% endfor %}
</div>
{% for post in site.posts offset:3%}
<div class="row">
<div class="col-xs-12 col-md-10 col-xs-12">
<a class="post-link link-black" href="{{ post.url | prepend: site.github.url }}">
<h4 class="">{{ post.title }}</h4>
</a>
<div class="text-small text-muted m-t-1">
{{ post.content | strip_html | truncatewords:30 }}
</div>
</div>
<div class="col-xs-12 col-md-2 text-muted text-small">{{ post.date | date: "%b %Y" }}</div>
</div>
<div class="row m-b-1">
<hr />
</div>
{% endfor %}
{% include footer.html %}
</div>