~camden/camden.lol

4f2d6e918d20dacda3556bd0504589dc85b58922 — Camden Mecklem 1 year, 21 days ago a1df4d6
fixes
4 files changed, 6 insertions(+), 3 deletions(-)

M assets/main.css
M config.toml
A content/posts/_index.md
M layouts/partials/head.html
M assets/main.css => assets/main.css +1 -1
@@ 33,7 33,7 @@ a:hover {
}

.banner-img {
  max-width: min(600px, 90%);
  max-width: calc(min(600px, 90%));
  max-height: 100%;
  image-rendering: pixelated;
  padding: 20px;

M config.toml => config.toml +1 -1
@@ 1,6 1,6 @@
baseURL = 'https://camden.lol/'
languageCode = 'en-us'
title = "Camden's Blog"
title = "Camden's Website"

[permalinks]
posts = "/:year/:month/:day/:filename"
\ No newline at end of file

A content/posts/_index.md => content/posts/_index.md +3 -0
@@ 0,0 1,3 @@
---
title: "Camden's Website"
---
\ No newline at end of file

M layouts/partials/head.html => layouts/partials/head.html +1 -1
@@ 4,7 4,7 @@
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>{{$.Title}}</title>
  <title>{{ site.Title }}</title>
  {{ $style := resources.Get "main.css" | resources.Minify | resources.Fingerprint }}
  <link rel="stylesheet" href="{{ $style.RelPermalink }}">
</head>
\ No newline at end of file