-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 777 Bytes
/
index.html
File metadata and controls
26 lines (24 loc) · 777 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: default
title: ACTSECURE
---
<ul>
<p>Recent posts:</p>
{% for post in site.posts limit:3%}
<li>
<a title="Will take a my recent post" href="{{ post.url | prepend: site.baseurl }}">
<h2 class="post-title" itemprop="name">{{ post.title }}</h2>
</a>
</li>
{% endfor %}
</ul>
<ul>
<p>Security Guides:</p>
{% for guide in site.guides limit:3%}
<li>
<a href="{{ guide.url}}">
<h2 class="post-title" itemprop="name">{{ guide.name }}</h2>
</a>
</li>
{% endfor %}
</ul>