-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (33 loc) · 1.06 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
---
layout: default
description: Greg Mayes' personal website and software development blog
---
<main class="2xl:mx-auto 2xl:w-3/4 grow px-5 mt-6 2xl:mt-8">
<h1>Introduction</h1>
<p class="mt-3">
I'm Greg Mayes and this is my personal website. I'm a software engineer currently residing in Stoke-on-Trent, UK.
</p>
<p class="mt-3">
I mainly work with PHP (Laravel) and JavaScript but I've dabbled with plenty of other languages, frameworks, and domains. You can find the source code for this website <a
href="https://github.com/GregMayes/website"
class="text-blue-600 hover:text-blue-800"
>on GitHub</a>.
</p>
<hr class="h-px my-5 bg-gray-400 border-0" />
<h2>
Posts
</h2>
<ul class="list-disc list-inside mt-2">
{% for post in site.posts %}
<li class="mb-2">
<a
href="{{ post.url }}"
class="text-blue-600 hover:text-blue-800"
>
{{ post.title }}
</a> <small>{{ post.date | date: "%Y-%m-%d" }}</small>
</li>
{% endfor %}
</ul>
</main>
{% include footer.html %}