-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (56 loc) · 2.39 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
---
layout: default
title: Главная
make-smaller-titles: true
---
<div class="container-fluid index">
<div class="row">
<div class="col-md-12 content-panel main">
<div class="gradient">
<!--<div class="gravatar">
<img src="{{ site.title_image }}" class="img-circle about-image" height="150" width="150" alt="{{ site.title }}" />
</div>-->
<h1 class="header site-name" itemprop="headline">
<span class="logo8250"><i class="fas fa-chevron-right"></i><!-- ›--></span>
<span id="write-site-name"></span>
</h1>
<div class="author-text" id="write-site-desc">
Блог Климова Романа о проектировании сайтов
<br />
Здесь собраны мысли, идеи и заметки,
<br />
а так же <a href="/portfolio/">портфолио <i class="fas fa-hand-point-right" aria-hidden="true"></i></a>
</div>
<!-- typed -->
<script src="{{ site.baseurl }}/js/typed.min.js"></script>
<script>
var typed = new Typed('#write-site-name', {
strings: [
"KlimovProject"
],
typeSpeed: 130,
cursorChar: '_'
});
</script>
<!-- typed end -->
{% include social_links.html %}
</div>
</div>
<div class="col-md-12 content-panel">
<div class="articles">
<h2>Последние публикации</h2>
<ul>
{% for post in site.posts limit: site.post_limit %}
<li>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<small class="hidden-xs">{% include date_ru_locale.html date=post.date %}</small>
</li>
{% endfor %}
<li>
<small><i><a href="{{ site.baseurl }}/posts/">ещё...</a></i></small>
</li>
</ul>
</div>
</div>
</div>
</div>