forked from pbrucla/pbrucla.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
24 lines (23 loc) · 787 Bytes
/
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
---
layout: default
description: Articles & writeups from some of the CTFs we have competed at!
---
<h1>Blog</h1>
<ul class="blog-cards">
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">
<div class="card-title">{{ post.title }}</div>
<div class="card-date-author">{{ post.date | date: "%B %-d, %Y" }} - {{ post.author }}</div>
<div class="tags">
{% for tag in post.tags %}
<span>{{tag}}</span>
{% endfor %}
</div>
<p class="card-summary">{{ post.description | strip_html | newline_to_br | strip_newlines | replace: '<br />', '
' | strip_html |
strip | truncate: 200 }}</p>
</a>
</li>
{% endfor %}
</ul>