-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopments.html
More file actions
26 lines (22 loc) · 969 Bytes
/
Copy pathdevelopments.html
File metadata and controls
26 lines (22 loc) · 969 Bytes
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
---
layout: page
title: My Developments
---
{% for post in site.posts %}
{% if post.type == 'development' %}
<div class="blg_post">
<div class="blg_post_left">
<div class="blg_post_subject">{{ post.subject }}</div>
<a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}">
<img class="blg_post_image" src="{{ site.url }}{{ site.baseurl }}/resources/page/Post/{{ post.image }}" alt="" onerror="this.onerror = null; this.src = '{{ site.url }}{{ site.baseurl }}/resources/page/Post/post_blog.jpg';">
</a>
</div>
<div class="blg_post_right">
<div class="blg_post_title">{{ post.title }}</div>
<p class="blg_post_content">{{ post.content | strip_html | truncatewords:100 }}</p>
<div class="blg_post_read_more"><a href="{{ site.url }}{{ site.baseurl }}{{ post.url }}">Read More</a></div>
</div>
</div>
<div class="close_but"><i class="close1"></i></div>
{% endif %}
{% endfor %}