-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (53 loc) · 1.81 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
title: GurgCorp Home Page
layout: default
---
<div class="">
<div style="justify-content: center; display: flex;">
<div class="header">
<img style="width: 600px; height: auto;" src="/static/tgc.png">
</div>
</div>
<div style="justify-content: center; display: flex;">
<ul>
<li style="display: inline;"><a href ="greighuth_cv_full.pdf">cv</a></li>
<li style="display: inline;"> |</li>
<li style="display: inline;"><a href ="https://github.com/greighuth">github</a></li>
<li style="display: inline;"> |</li>
<li style="display: inline;"><a href ="https://www.youtube.com/channel/UCp30U12QUsTNEAVbGGL6JsA"> youtube </a></li>
<li style="display: inline;"> |</li>
<li style="display: inline;"><a href ="https://www.twitch.tv/thegurgcomplex"> AND A TWITCH </a></li>
</ul>
</div>
<h4> ONM Retrospective Series </h3>
<ul class="no-bullets">
{% for post in site.posts %}
{% if post.categories contains "archive" %}
<li>
<div style="line-height: 20px;">
<a href ="{{ post.url }}">{{ post.title }} </a>
</div>
</li>
{% endif %}
{% endfor %}
</ul>
<h4> Blog Posts</h3>
<ul class="no-bullets">
{% for post in site.posts %}
{% if post.categories contains "blog" %}
<li>
<div style="line-height: 20px;">
<a> {{ post.date | date: "%-d %B %Y" }} - </a>
<a href ="{{ post.url }}"> {{ post.title }} </a>
</div>
</li>
{% endif %}
{% endfor %}
</ul>
<h4> Games i have played in 2024 :</h4>
<ul class="no-bullets">
{% for game in site.data.minireviews %}
<li> <i><b>{{ game.title }}</b></i> ({{ game.platform }}) | {{ game.text }} </li>
{% endfor %}
</ul>
</div>