Tags
This commit is contained in:
@@ -2,7 +2,9 @@
|
|||||||
layout: post
|
layout: post
|
||||||
title: "Go Hugo!"
|
title: "Go Hugo!"
|
||||||
date: 2020-07-14
|
date: 2020-07-14
|
||||||
categories: webdev, selfhosting
|
categories:
|
||||||
|
- webdev
|
||||||
|
- selfhosting
|
||||||
---
|
---
|
||||||
I've just moved the site over from Jekyll to Hugo. Why? Because I have a growing vendetta against Ruby and (relatedly so) it was easier to make a webhook-based build system for Hugo. No matter what I do, I can never get RVM set up right, I can just about manage Python Venvs! This all spiraled from trying to finish my build system, as these things do. Now every time I push to master in my git repo, the site will be automatically built and copied in place, which was the last piece missing for a self-hosted equivalent to GitHub Pages. Win! And I only totally FUBARed Docker once in the process...
|
I've just moved the site over from Jekyll to Hugo. Why? Because I have a growing vendetta against Ruby and (relatedly so) it was easier to make a webhook-based build system for Hugo. No matter what I do, I can never get RVM set up right, I can just about manage Python Venvs! This all spiraled from trying to finish my build system, as these things do. Now every time I push to master in my git repo, the site will be automatically built and copied in place, which was the last piece missing for a self-hosted equivalent to GitHub Pages. Win! And I only totally FUBARed Docker once in the process...
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,10 @@
|
|||||||
<main aria-label="Content">
|
<main aria-label="Content">
|
||||||
<article>
|
<article>
|
||||||
<h3 style="color: black; padding-top: 2em; padding-bottom: 1em;">{{ .Title }}</h3>
|
<h3 style="color: black; padding-top: 2em; padding-bottom: 1em;">{{ .Title }}</h3>
|
||||||
|
<p>Tags:
|
||||||
|
{{ range (.GetTerms "categories") }}
|
||||||
|
<a href="{{ .Permalink }}" style="background: black; border-radius: 0.5em; padding: 0.5em; margin: 0.4em">{{ .LinkTitle }}</a>
|
||||||
|
{{ end }}</p>
|
||||||
{{.Content}}
|
{{.Content}}
|
||||||
</article>
|
</article>
|
||||||
</main>
|
</main>
|
||||||
|
|||||||
@@ -108,9 +108,6 @@ article, .contained {
|
|||||||
grid-template-rows: auto 1fr auto;
|
grid-template-rows: auto 1fr auto;
|
||||||
grid-template-columns: 100%;
|
grid-template-columns: 100%;
|
||||||
}
|
}
|
||||||
.page-link {
|
|
||||||
color: white !important;
|
|
||||||
}
|
|
||||||
.bigimage {
|
.bigimage {
|
||||||
transform: skew(-10deg);
|
transform: skew(-10deg);
|
||||||
color: white;
|
color: white;
|
||||||
@@ -167,9 +164,6 @@ a.button {
|
|||||||
.bg-green {
|
.bg-green {
|
||||||
background: green;
|
background: green;
|
||||||
}
|
}
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
.full-width {
|
.full-width {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|||||||
Reference in New Issue
Block a user