-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
29 lines (29 loc) · 944 Bytes
/
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
---
title: My Posts
---
<ul>
{% for post in site.posts %}
{% unless post.category == "BigFix"%}
<li>
{{ post.date | date:"%Y-%m-%d" }} - <a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endunless %}
{% endfor %}
</ul>
<h1>My BigFix Posts:</h1>
<ul>
{% for post in site.categories.BigFix %}
<li>
{{ post.date | date:"%Y-%m-%d" }} - <a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
<br/>
<h2>Find Me Elsewhere:</h2>
<ul>
<li> <a href="https://forum.bigfix.com/users/jgstew">https://forum.bigfix.com/users/jgstew</a> </li>
<li> <a href="https://bigfix.me/user/jgstew">https://bigfix.me/user/jgstew</a> </li>
<li> <a href="https://github.com/jgstew">https://github.com/jgstew</a> </li>
<li> <a href="https://www.linkedin.com/in/jgstew">https://www.linkedin.com/in/jgstew</a> </li>
<li> <a href="https://twitter.com/jgstew">https://twitter.com/jgstew</a> </li>
</ul>