This commit is contained in:
Charlotte Gaskell 2025-07-28 14:39:05 +01:00
parent c5caa29000
commit a54006c45a
Signed by: charlotte
GPG key ID: 8B93BA001088A340
8 changed files with 128 additions and 0 deletions

8
blog/404.md Normal file
View file

@ -0,0 +1,8 @@
---
permalink: /404.html
layout: default
title: "404"
---
## page not found :(
the requested page does not exist

50
blog/_config.yml Normal file
View file

@ -0,0 +1,50 @@
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
#
# If you need help with YAML syntax, here are some quick references for you:
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
# https://learnxinyminutes.com/docs/yaml/
#
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: lotte's blog
email: lotte544@proton.me
description: >-
charlotte's blog and ramblings
baseurl: ""
url: "https://blog.lottepup.space/" # the base hostname & protocol for your site, e.g. http://example.com
# Build settings
plugins:
- jekyll-feed
# Exclude from processing.
# The following items will not be processed, by default.
# Any item listed under the `exclude:` key here will be automatically added to
# the internal "default list".
#
# Excluded items can be processed by explicitly listing the directories or
# their entries' file path in the `include:` list.
#
# exclude:
# - .sass-cache/
# - .jekyll-cache/
# - gemfiles/
# - Gemfile
# - Gemfile.lock
# - node_modules/
# - vendor/bundle/
# - vendor/cache/
# - vendor/gems/
# - vendor/ruby/

View file

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/shared/main.css" />
</head>
<body>
<h1>blog.lottepup.space - {{ page.title }}</h1>
<div class="content">
{{ content }}
</div>
<div class="footer">
<hr />
<p>made by charlotte in 2025 :3 woof</p>
<p>🐶</p>
</div>
</body>
</html>

8
blog/_layouts/post.html Normal file
View file

@ -0,0 +1,8 @@
---
layout: default
---
<p><a href="/">&lt; home</a></p>
<em>posted on {{ page.date }}</em>
{{ content }}

View file

@ -0,0 +1,15 @@
---
layout: default
---
{{ content }}
<h2>posts:</h2>
<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">[ {{ post.date }} ] {{ post.title }}</a>
</li>
{% endfor %}
</ul>

View file

@ -0,0 +1,9 @@
---
layout: post
title: "Hello, World!"
date: 2025-07-28 13:00:00 +0100
categories: meta
---
Hello, World!
This is the first post (and test post) on my new blog site.

4
blog/index.md Normal file
View file

@ -0,0 +1,4 @@
---
layout: postlist
title: "homepage"
---

1
blog/shared Symbolic link
View file

@ -0,0 +1 @@
../shared