forked from themefisher/airspace-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
85 lines (85 loc) · 2.8 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
---
layout: page
title: Blog
permalink: /blog/
navigation_weight: 1
---
<!-- Slider Start -->
<section id="global-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h1>posts</h1>
<p>about agile and software development</p>
</div>
</div>
</div>
</div>
</section>
{% for post in site.posts %}
<div class="post-area">
<h1><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h1>
<p class="post-date">
By {{ post.author.display_name }} on {{ post.date | date: "%B %-d, %Y" }}
</p>
<p>
{{ post.content | strip_html | truncatewords: 50 }}
</p>
<p class="read-more">
<a href="{{ post.url | prepend: site.baseurl }}">continue reading →</a>
</p>
</div>
{% endfor %}
<!-- Footer for site info -->
<section id="site-info-footer">
<div class="container">
<div class="row">
<div class="col-md-4">
<h6>Oriol del Barrio</h6>
<div class="textwidget">Software Developer and Agile Advocate. I enjoy writing code, and I develop every line of code like a craftsman is creating a new unique piece.
</br>
<ul class="social-footer">
<li>
<a href="https://profiles.google.com/orioldelb"><i class="fa fa-google-plus"></i></a>
</li>
<li>
<a href="http://www.twitter.com/lordudun"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="http://es.linkedin.com/in/orioldelbarrio/en"><i class="fa fa-linkedin"></i></a>
</li>
<li>
<a href="https://www.instagram.com/orioldelb"><i class="fa fa-instagram"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-md-4 category-widget">
<h6>Categories</h6>
<ul>
{% assign tags_list = site.categories %}
{% if tags_list.first[0] == null %}
{% for tag in tags_list %}
<li><a href="#{{ tag }}">{{ tag | capitalize }}</a></li>
{% endfor %}
{% else %}
{% for tag in tags_list %}
<li><a href="#{{ tag[0] }}">{{ tag[0] | capitalize }}</a></li>
{% endfor %}
{% endif %}
{% assign tags_list = nil %}
</ul>
</div>
<div class="col-md-4">
<h6 class="widget-title">License</h6>
<div class="textwidget">This site is under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License:
<p></p>
<p>
<a href="http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en" rel="license"><img style="border-width: 0;" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png" alt="Licencia de Creative Commons"></a>
</p>
</div>
</div>
</div>
</div>
</section>