-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
100 lines (72 loc) · 2.52 KB
/
blog.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
95
96
97
98
99
100
---
layout: default
image: /img/blog/first/first.jpg
description: "Блог лабораторії Lampa"
permalink: /blog/
---
<header>
{% include nav.html %}
</header><!-- site-header -->
<section id="header-pages-blog">
<div class="container" id="header-pages-blog-title">
<h2 class="page-title">Блог</h2>
</div>
</section> <!-- hero -->
{% include social.html %}
<div class="container" id="separator-pages-top"></div>
<section id="blog-home">
<div class="container">
<div class="row">
<!-- Blog Entries Column -->
<div class="col-md-8">
{% for post in site.posts %}
{% if post.type == 'blog' %}
<!-- Blog Post -->
<h3><a href="{{ post.url }}">{{post.title}}</a></h3>
<p class="lead">Автор <u>{{post.author}}</u> <span class="glyphicon glyphicon-time"></span> Опубліковано <u>{{post.date | date:"%B %d, %Y" }}</u></p>
<br>
<img class="img-responsive" src="{{site.baseurl}}/img/blog/{{post.teaserlist}}" alt="">
<br>
<p>{{post.meta}}</p>
<br>
<a href="{{ post.url }}" ><strong>читати більше</strong> →</a>
<br><br>
<hr>
<br>
{% endif %}
{% endfor %}
</div>
<!-- Blog Sidebar Widgets Column -->
<div class="col-md-4">
<!-- Blog Categories Well -->
<br>
<div class="well">
<h4>Теги</h4>
<div class="row">
{% for c in site.categories %}
<div class="col-lg-6">
<ul class="list-unstyled">
<li><a href="/tag/{{c | first}}">{{ c | first }}</a>
</li>
</ul>
</div>
{% endfor %}
</div> <!-- row -->
</div> <!-- well -->
<!-- Blog Social Well -->
<div class="well">
<h4>Поділитися</h4>
<br>
<span class='st_facebook_large' displayText='Facebook'></span>
<span class='st_twitter_large' displayText='Tweet'></span>
<span class='st_linkedin_large' displayText='LinkedIn'></span>
<span class='st_googleplus_large' displayText='Google +'></span>
<span class='st_pinterest_large' displayText='Pinterest'></span>
<span class='st_email_large' displayText='Email'></span>
</div> <!-- well -->
</div> <!-- col -->
</div> <!-- row -->
</div> <!-- container -->
</section>
<div class="container" id="separator"></div>
{% include footer.html %}