add simple blog, change spelling index
This commit is contained in:
parent
dd4182141f
commit
aa36326e6c
|
@ -1,7 +1,7 @@
|
|||
<div class="menu">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="blog.html">Blog</a>
|
||||
<a href="art.html">Art</a>
|
||||
<a href="refsheet.html">Ref sheet</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
<a href="/index.html">Home</a>
|
||||
<a href="/blog.html">Blog</a>
|
||||
<a href="/art.html">Art</a>
|
||||
<a href="/refsheet.html">Ref sheet</a>
|
||||
<a href="/contact.html">Contact</a>
|
||||
</div>
|
|
@ -18,7 +18,7 @@
|
|||
</div>
|
||||
|
||||
<h1>Welcome to my website!</h1>
|
||||
<p>Hello and welcome to my website :> My name is Hexaitos (or just Hex). I am a bateleur eagle from Germany. I like working with computers (especially Linux) and networks, playing (video) games, learning languages, taking photos and a bunch of other things, depending on what I am currently fixiated upon. If you want to get in touch, look at the <a href="contact.html">contact</a> page!</p>
|
||||
<p>Hello and welcome to my website :> My name is Hexaitos (or just Hex). I am a bateleur eagle from Germany. I like working with computers (especially Linux) and networks, playing (video) games, learning languages, taking photos and a bunch of other things, depending on what I am currently fixated on. If you want to get in touch, look at the <a href="contact.html">contact</a> page!</p>
|
||||
|
||||
<p>This website is still very much a work-in-progress. I will be adding a <a href="blog.html">blog</a> at some point where I will be posting things mostly about computers and games. </p>
|
||||
</div>
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<title>{{ page.title }}</title>
|
||||
|
||||
<link rel="stylesheet" href="/assets/css/styles.css">
|
||||
|
||||
<body>
|
||||
{% include menu.html %}
|
||||
|
||||
<div class="main">
|
||||
<h1>{{ page.title }}</h1>
|
||||
<p style="text-align: right; font-style: italic;">This post was published on {{ page.date | date_to_string }}</p>
|
||||
|
||||
{{ content }}
|
||||
</div>
|
||||
</body>
|
||||
|
||||
<footer>
|
||||
{% include footer.html %}
|
||||
</footer>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
layout: post
|
||||
author: hexaitos
|
||||
title: My first blog post
|
||||
---
|
||||
|
||||
Hello everyone! This is my first blog post, mostly just to try out how everything works.
|
|
@ -0,0 +1,34 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<title>My first blog post</title>
|
||||
|
||||
<link rel="stylesheet" href="/assets/css/styles.css">
|
||||
|
||||
<body>
|
||||
<div class="menu">
|
||||
<a href="/index.html">Home</a>
|
||||
<a href="/blog.html">Blog</a>
|
||||
<a href="/art.html">Art</a>
|
||||
<a href="/refsheet.html">Ref sheet</a>
|
||||
<a href="/contact.html">Contact</a>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
<h1>My first blog post</h1>
|
||||
<p style="text-align: right; font-style: italic;">This post was published on 30 Sep 2024</p>
|
||||
|
||||
<p>Hello everyone! This is my first blog post, mostly just to try out how everything works.</p>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
<footer>
|
||||
<p>2024 - 2024 hexaitos.com</p>
|
||||
<p>Made with Jekyll</p>
|
||||
</footer>
|
||||
|
||||
</html>
|
|
@ -10,11 +10,11 @@
|
|||
|
||||
<body>
|
||||
<div class="menu">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="blog.html">Blog</a>
|
||||
<a href="art.html">Art</a>
|
||||
<a href="refsheet.html">Ref sheet</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
<a href="/index.html">Home</a>
|
||||
<a href="/blog.html">Blog</a>
|
||||
<a href="/art.html">Art</a>
|
||||
<a href="/refsheet.html">Ref sheet</a>
|
||||
<a href="/contact.html">Contact</a>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
|
|
|
@ -10,16 +10,25 @@
|
|||
|
||||
<body>
|
||||
<div class="menu">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="blog.html">Blog</a>
|
||||
<a href="art.html">Art</a>
|
||||
<a href="refsheet.html">Ref sheet</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
<a href="/index.html">Home</a>
|
||||
<a href="/blog.html">Blog</a>
|
||||
<a href="/art.html">Art</a>
|
||||
<a href="/refsheet.html">Ref sheet</a>
|
||||
<a href="/contact.html">Contact</a>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
<p>Nothing here just yet.</p>
|
||||
<h1>Blog Posts</h1>
|
||||
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/2024/09/30/first_blog_post.html">My first blog post (30 Sep 2024)</a>
|
||||
<p>Hello everyone! This is my first blog post, mostly just to try out how everything works.</p>
|
||||
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
|
|
|
@ -10,11 +10,11 @@
|
|||
|
||||
<body>
|
||||
<div class="menu">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="blog.html">Blog</a>
|
||||
<a href="art.html">Art</a>
|
||||
<a href="refsheet.html">Ref sheet</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
<a href="/index.html">Home</a>
|
||||
<a href="/blog.html">Blog</a>
|
||||
<a href="/art.html">Art</a>
|
||||
<a href="/refsheet.html">Ref sheet</a>
|
||||
<a href="/contact.html">Contact</a>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
|
|
|
@ -10,11 +10,11 @@
|
|||
|
||||
<body>
|
||||
<div class="menu">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="blog.html">Blog</a>
|
||||
<a href="art.html">Art</a>
|
||||
<a href="refsheet.html">Ref sheet</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
<a href="/index.html">Home</a>
|
||||
<a href="/blog.html">Blog</a>
|
||||
<a href="/art.html">Art</a>
|
||||
<a href="/refsheet.html">Ref sheet</a>
|
||||
<a href="/contact.html">Contact</a>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
|
@ -24,7 +24,7 @@
|
|||
</div>
|
||||
|
||||
<h1>Welcome to my website!</h1>
|
||||
<p>Hello and welcome to my website :> My name is Hexaitos (or just Hex). I am a bateleur eagle from Germany. I like working with computers (especially Linux) and networks, playing (video) games, learning languages, taking photos and a bunch of other things, depending on what I am currently fixiated upon. If you want to get in touch, look at the <a href="contact.html">contact</a> page!</p>
|
||||
<p>Hello and welcome to my website :> My name is Hexaitos (or just Hex). I am a bateleur eagle from Germany. I like working with computers (especially Linux) and networks, playing (video) games, learning languages, taking photos and a bunch of other things, depending on what I am currently fixated on. If you want to get in touch, look at the <a href="contact.html">contact</a> page!</p>
|
||||
|
||||
<p>This website is still very much a work-in-progress. I will be adding a <a href="blog.html">blog</a> at some point where I will be posting things mostly about computers and games. </p>
|
||||
</div>
|
||||
|
|
|
@ -10,11 +10,11 @@
|
|||
|
||||
<body>
|
||||
<div class="menu">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="blog.html">Blog</a>
|
||||
<a href="art.html">Art</a>
|
||||
<a href="refsheet.html">Ref sheet</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
<a href="/index.html">Home</a>
|
||||
<a href="/blog.html">Blog</a>
|
||||
<a href="/art.html">Art</a>
|
||||
<a href="/refsheet.html">Ref sheet</a>
|
||||
<a href="/contact.html">Contact</a>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
layout: default
|
||||
title: "Hexaitos.com – Blog"
|
||||
---
|
||||
<h1>Blog Posts</h1>
|
||||
|
||||
<ul>
|
||||
{% for post in site.posts %}
|
||||
<li>
|
||||
<a href="{{ post.url }}">{{ post.title }} ({{ post.date | date_to_string }})</a>
|
||||
{{ post.excerpt }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
Loading…
Reference in New Issue