-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
30 lines (27 loc) · 1.02 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
---
layout: layout
title: Programming and Devops
position: 1
keywords: Python,Devops,Programming,Security,Reverse Engineering
desc: Articles by Cal Leeming about Programming, Security, Reverse Engineering, Python and Devops.
---
<div class="ct-content-left">
<div class="ct-posts">
{% for weight in (1..99) reversed %}{% for post in site.posts %}{% if post.weight == weight %}
<div class="ct-post ct-post-{{ post.type }}">
<a class="inner" href="{{ post.url }}" title="{{ post.title }}">
<div class="img-holder">
<div alt="{{ post.title }}" class="img" style="background-image:url('{{ post.coverimage }}'); {% if post.background_position %}background-position: {{ post.background_position }};{% endif %}"></div>
</div>
<div class="title">
<h2>{{ post.title }} {{post.position}}</h2>
<span class="date">{{ post.date | date_to_string }}</span>
</div>
</a>
</div>
{% endif %}{% endfor %}{% endfor %}
</div>
</div>
<div class="ct-content-right">
{% include right.html %}
</div>