Compare commits
No commits in common. "main" and "old" have entirely different histories.
18 changed files with 135 additions and 220 deletions
|
@ -1,8 +0,0 @@
|
||||||
---
|
|
||||||
permalink: /404.html
|
|
||||||
layout: default
|
|
||||||
title: "404"
|
|
||||||
---
|
|
||||||
|
|
||||||
## page not found :(
|
|
||||||
the requested page does not exist
|
|
|
@ -1,33 +0,0 @@
|
||||||
<!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>
|
|
|
@ -1,8 +0,0 @@
|
||||||
---
|
|
||||||
layout: default
|
|
||||||
---
|
|
||||||
<p><a href="/">< home</a></p>
|
|
||||||
|
|
||||||
<em>posted on {{ page.date }}</em>
|
|
||||||
|
|
||||||
{{ content }}
|
|
|
@ -1,15 +0,0 @@
|
||||||
---
|
|
||||||
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>
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
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.
|
|
|
@ -1,4 +0,0 @@
|
||||||
---
|
|
||||||
layout: postlist
|
|
||||||
title: "homepage"
|
|
||||||
---
|
|
|
@ -1 +0,0 @@
|
||||||
../shared
|
|
|
@ -1,44 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
|
|
||||||
<html>
|
|
||||||
|
|
||||||
<head>
|
|
||||||
|
|
||||||
<title>lottepup.space</title>
|
|
||||||
<link rel="stylesheet" href="/shared/main.css" />
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<h1>lottepup.space</h1>
|
|
||||||
<h3>lotte's home on the web</h3>
|
|
||||||
|
|
||||||
<h2>me</h2>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://alico.nexus/@lotte">fedi</a></li>
|
|
||||||
<li>git: <a href="https://git.lottepup.space/charlotte">git.lottepup.space</a> / <a href="https://github.com/c-gaskell">github</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h2>pages</h2>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://blog.lottepup.space">blog</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h2>services</h2>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://git.lottepup.space">git</a></li>
|
|
||||||
<li><a href="https://media.lottepup.space">media</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
<hr />
|
|
||||||
<p>made by charlotte in 2025 :3 woof</p>
|
|
||||||
<p>🐶</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
|
@ -1 +0,0 @@
|
||||||
../shared
|
|
|
@ -1,39 +0,0 @@
|
||||||
* {
|
|
||||||
font-family: monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
html {
|
|
||||||
background-color: black;
|
|
||||||
color: #ffc0cb;
|
|
||||||
font-size: 12pt;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: #ffffff;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:visited {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
margin-bottom: 120px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer {
|
|
||||||
position: fixed;
|
|
||||||
left: 0;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
text-align: center;
|
|
||||||
background-color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
hr {
|
|
||||||
border: 1px solid #ffc0cb;
|
|
||||||
}
|
|
5
site/.gitignore
vendored
Normal file
5
site/.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
_site
|
||||||
|
.sass-cache
|
||||||
|
.jekyll-cache
|
||||||
|
.jekyll-metadata
|
||||||
|
vendor
|
25
site/404.html
Normal file
25
site/404.html
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
---
|
||||||
|
permalink: /404.html
|
||||||
|
layout: page
|
||||||
|
---
|
||||||
|
|
||||||
|
<style type="text/css" media="screen">
|
||||||
|
.container {
|
||||||
|
margin: 10px auto;
|
||||||
|
max-width: 600px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
margin: 30px 0;
|
||||||
|
font-size: 4em;
|
||||||
|
line-height: 1;
|
||||||
|
letter-spacing: -1px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<h1>404</h1>
|
||||||
|
|
||||||
|
<p><strong>Page not found :(</strong></p>
|
||||||
|
<p>The requested page could not be found.</p>
|
||||||
|
</div>
|
|
@ -3,11 +3,11 @@ GEM
|
||||||
specs:
|
specs:
|
||||||
addressable (2.8.7)
|
addressable (2.8.7)
|
||||||
public_suffix (>= 2.0.2, < 7.0)
|
public_suffix (>= 2.0.2, < 7.0)
|
||||||
base64 (0.3.0)
|
base64 (0.2.0)
|
||||||
bigdecimal (3.2.2)
|
bigdecimal (3.1.9)
|
||||||
colorator (1.1.0)
|
colorator (1.1.0)
|
||||||
concurrent-ruby (1.3.5)
|
concurrent-ruby (1.3.5)
|
||||||
csv (3.3.5)
|
csv (3.3.4)
|
||||||
em-websocket (0.5.3)
|
em-websocket (0.5.3)
|
||||||
eventmachine (>= 0.12.9)
|
eventmachine (>= 0.12.9)
|
||||||
http_parser.rb (~> 0)
|
http_parser.rb (~> 0)
|
||||||
|
@ -24,31 +24,22 @@ GEM
|
||||||
ffi (1.17.2-x86_64-linux-gnu)
|
ffi (1.17.2-x86_64-linux-gnu)
|
||||||
ffi (1.17.2-x86_64-linux-musl)
|
ffi (1.17.2-x86_64-linux-musl)
|
||||||
forwardable-extended (2.6.0)
|
forwardable-extended (2.6.0)
|
||||||
google-protobuf (4.31.1)
|
google-protobuf (4.30.2)
|
||||||
bigdecimal
|
bigdecimal
|
||||||
rake (>= 13)
|
rake (>= 13)
|
||||||
google-protobuf (4.31.1-aarch64-linux-gnu)
|
google-protobuf (4.30.2-aarch64-linux)
|
||||||
bigdecimal
|
bigdecimal
|
||||||
rake (>= 13)
|
rake (>= 13)
|
||||||
google-protobuf (4.31.1-aarch64-linux-musl)
|
google-protobuf (4.30.2-arm64-darwin)
|
||||||
bigdecimal
|
bigdecimal
|
||||||
rake (>= 13)
|
rake (>= 13)
|
||||||
google-protobuf (4.31.1-arm64-darwin)
|
google-protobuf (4.30.2-x86-linux)
|
||||||
bigdecimal
|
bigdecimal
|
||||||
rake (>= 13)
|
rake (>= 13)
|
||||||
google-protobuf (4.31.1-x86-linux-gnu)
|
google-protobuf (4.30.2-x86_64-darwin)
|
||||||
bigdecimal
|
bigdecimal
|
||||||
rake (>= 13)
|
rake (>= 13)
|
||||||
google-protobuf (4.31.1-x86-linux-musl)
|
google-protobuf (4.30.2-x86_64-linux)
|
||||||
bigdecimal
|
|
||||||
rake (>= 13)
|
|
||||||
google-protobuf (4.31.1-x86_64-darwin)
|
|
||||||
bigdecimal
|
|
||||||
rake (>= 13)
|
|
||||||
google-protobuf (4.31.1-x86_64-linux-gnu)
|
|
||||||
bigdecimal
|
|
||||||
rake (>= 13)
|
|
||||||
google-protobuf (4.31.1-x86_64-linux-musl)
|
|
||||||
bigdecimal
|
bigdecimal
|
||||||
rake (>= 13)
|
rake (>= 13)
|
||||||
http_parser.rb (0.8.0)
|
http_parser.rb (0.8.0)
|
||||||
|
@ -81,7 +72,7 @@ GEM
|
||||||
jekyll (>= 3.8, < 5.0)
|
jekyll (>= 3.8, < 5.0)
|
||||||
jekyll-watch (2.2.1)
|
jekyll-watch (2.2.1)
|
||||||
listen (~> 3.0)
|
listen (~> 3.0)
|
||||||
json (2.13.2)
|
json (2.11.3)
|
||||||
kramdown (2.5.1)
|
kramdown (2.5.1)
|
||||||
rexml (>= 3.3.9)
|
rexml (>= 3.3.9)
|
||||||
kramdown-parser-gfm (1.1.0)
|
kramdown-parser-gfm (1.1.0)
|
||||||
|
@ -98,50 +89,51 @@ GEM
|
||||||
pathutil (0.16.2)
|
pathutil (0.16.2)
|
||||||
forwardable-extended (~> 2.6)
|
forwardable-extended (~> 2.6)
|
||||||
public_suffix (6.0.2)
|
public_suffix (6.0.2)
|
||||||
rake (13.3.0)
|
rake (13.2.1)
|
||||||
rb-fsevent (0.11.2)
|
rb-fsevent (0.11.2)
|
||||||
rb-inotify (0.11.1)
|
rb-inotify (0.11.1)
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
rexml (3.4.1)
|
rexml (3.4.1)
|
||||||
rouge (4.6.0)
|
rouge (4.5.2)
|
||||||
safe_yaml (1.0.5)
|
safe_yaml (1.0.5)
|
||||||
sass-embedded (1.89.2)
|
sass-embedded (1.87.0)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
rake (>= 13)
|
rake (>= 13)
|
||||||
sass-embedded (1.89.2-aarch64-linux-android)
|
sass-embedded (1.87.0-aarch64-linux-android)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
sass-embedded (1.89.2-aarch64-linux-gnu)
|
sass-embedded (1.87.0-aarch64-linux-gnu)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
sass-embedded (1.89.2-aarch64-linux-musl)
|
sass-embedded (1.87.0-aarch64-linux-musl)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
sass-embedded (1.89.2-arm-linux-androideabi)
|
sass-embedded (1.87.0-arm-linux-androideabi)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
sass-embedded (1.89.2-arm-linux-gnueabihf)
|
sass-embedded (1.87.0-arm-linux-gnueabihf)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
sass-embedded (1.89.2-arm-linux-musleabihf)
|
sass-embedded (1.87.0-arm-linux-musleabihf)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
sass-embedded (1.89.2-arm64-darwin)
|
sass-embedded (1.87.0-arm64-darwin)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
sass-embedded (1.89.2-riscv64-linux-android)
|
sass-embedded (1.87.0-riscv64-linux-android)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
sass-embedded (1.89.2-riscv64-linux-gnu)
|
sass-embedded (1.87.0-riscv64-linux-gnu)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
sass-embedded (1.89.2-riscv64-linux-musl)
|
sass-embedded (1.87.0-riscv64-linux-musl)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
sass-embedded (1.89.2-x86_64-darwin)
|
sass-embedded (1.87.0-x86_64-darwin)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
sass-embedded (1.89.2-x86_64-linux-android)
|
sass-embedded (1.87.0-x86_64-linux-android)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
sass-embedded (1.89.2-x86_64-linux-gnu)
|
sass-embedded (1.87.0-x86_64-linux-gnu)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
sass-embedded (1.89.2-x86_64-linux-musl)
|
sass-embedded (1.87.0-x86_64-linux-musl)
|
||||||
google-protobuf (~> 4.31)
|
google-protobuf (~> 4.30)
|
||||||
terminal-table (3.0.2)
|
terminal-table (3.0.2)
|
||||||
unicode-display_width (>= 1.1.1, < 3)
|
unicode-display_width (>= 1.1.1, < 3)
|
||||||
unicode-display_width (2.6.0)
|
unicode-display_width (2.6.0)
|
||||||
webrick (1.9.1)
|
webrick (1.9.1)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
|
aarch64-linux
|
||||||
aarch64-linux-android
|
aarch64-linux-android
|
||||||
aarch64-linux-gnu
|
aarch64-linux-gnu
|
||||||
aarch64-linux-musl
|
aarch64-linux-musl
|
||||||
|
@ -155,6 +147,7 @@ PLATFORMS
|
||||||
riscv64-linux-gnu
|
riscv64-linux-gnu
|
||||||
riscv64-linux-musl
|
riscv64-linux-musl
|
||||||
ruby
|
ruby
|
||||||
|
x86-linux
|
||||||
x86-linux-gnu
|
x86-linux-gnu
|
||||||
x86-linux-musl
|
x86-linux-musl
|
||||||
x86_64-darwin
|
x86_64-darwin
|
||||||
|
@ -172,4 +165,4 @@ DEPENDENCIES
|
||||||
wdm (~> 0.1)
|
wdm (~> 0.1)
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.7.1
|
2.6.8
|
|
@ -18,14 +18,15 @@
|
||||||
# You can create any custom variable you would like, and they will be accessible
|
# You can create any custom variable you would like, and they will be accessible
|
||||||
# in the templates via {{ site.myvariable }}.
|
# in the templates via {{ site.myvariable }}.
|
||||||
|
|
||||||
title: lotte's blog
|
title: lotte's pup space
|
||||||
email: lotte544@proton.me
|
email: me@lottepup.space
|
||||||
description: >-
|
description: >- # this means to ignore newlines until "baseurl:"
|
||||||
charlotte's blog and ramblings
|
personal site and host for a number of public services
|
||||||
baseurl: ""
|
baseurl: "" # the subpath of your site, e.g. /blog
|
||||||
url: "https://blog.lottepup.space/" # the base hostname & protocol for your site, e.g. http://example.com
|
url: "https://lottepup.space/" # the base hostname & protocol for your site, e.g. http://example.com
|
||||||
|
|
||||||
# Build settings
|
# Build settings
|
||||||
|
theme: minima
|
||||||
plugins:
|
plugins:
|
||||||
- jekyll-feed
|
- jekyll-feed
|
||||||
|
|
29
site/_posts/2025-05-06-welcome-to-jekyll.markdown
Normal file
29
site/_posts/2025-05-06-welcome-to-jekyll.markdown
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
---
|
||||||
|
layout: post
|
||||||
|
title: "Welcome to Jekyll!"
|
||||||
|
date: 2025-05-06 13:20:21 +0100
|
||||||
|
categories: jekyll update
|
||||||
|
---
|
||||||
|
You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
|
||||||
|
|
||||||
|
Jekyll requires blog post files to be named according to the following format:
|
||||||
|
|
||||||
|
`YEAR-MONTH-DAY-title.MARKUP`
|
||||||
|
|
||||||
|
Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works.
|
||||||
|
|
||||||
|
Jekyll also offers powerful support for code snippets:
|
||||||
|
|
||||||
|
{% highlight ruby %}
|
||||||
|
def print_hi(name)
|
||||||
|
puts "Hi, #{name}"
|
||||||
|
end
|
||||||
|
print_hi('Tom')
|
||||||
|
#=> prints 'Hi, Tom' to STDOUT.
|
||||||
|
{% endhighlight %}
|
||||||
|
|
||||||
|
Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
|
||||||
|
|
||||||
|
[jekyll-docs]: https://jekyllrb.com/docs/home
|
||||||
|
[jekyll-gh]: https://github.com/jekyll/jekyll
|
||||||
|
[jekyll-talk]: https://talk.jekyllrb.com/
|
18
site/about.markdown
Normal file
18
site/about.markdown
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: About
|
||||||
|
permalink: /about/
|
||||||
|
---
|
||||||
|
|
||||||
|
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
|
||||||
|
|
||||||
|
You can find the source code for Minima at GitHub:
|
||||||
|
[jekyll][jekyll-organization] /
|
||||||
|
[minima](https://github.com/jekyll/minima)
|
||||||
|
|
||||||
|
You can find the source code for Jekyll at GitHub:
|
||||||
|
[jekyll][jekyll-organization] /
|
||||||
|
[jekyll](https://github.com/jekyll/jekyll)
|
||||||
|
|
||||||
|
|
||||||
|
[jekyll-organization]: https://github.com/jekyll
|
6
site/index.markdown
Normal file
6
site/index.markdown
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
# Feel free to add content and custom Front Matter to this file.
|
||||||
|
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
|
||||||
|
|
||||||
|
layout: home
|
||||||
|
---
|
Loading…
Add table
Add a link
Reference in a new issue