blog: v1
This commit is contained in:
parent
c5caa29000
commit
a54006c45a
8 changed files with 128 additions and 0 deletions
8
blog/404.md
Normal file
8
blog/404.md
Normal 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
50
blog/_config.yml
Normal 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/
|
33
blog/_layouts/default.html
Normal file
33
blog/_layouts/default.html
Normal 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
8
blog/_layouts/post.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
<p><a href="/">< home</a></p>
|
||||
|
||||
<em>posted on {{ page.date }}</em>
|
||||
|
||||
{{ content }}
|
15
blog/_layouts/postlist.html
Normal file
15
blog/_layouts/postlist.html
Normal 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>
|
9
blog/_posts/2025-07-28-hello-world.md
Normal file
9
blog/_posts/2025-07-28-hello-world.md
Normal 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
4
blog/index.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
layout: postlist
|
||||
title: "homepage"
|
||||
---
|
1
blog/shared
Symbolic link
1
blog/shared
Symbolic link
|
@ -0,0 +1 @@
|
|||
../shared
|
Loading…
Add table
Add a link
Reference in a new issue