diff --git a/content/posts/arch-revert-to-date.md b/content/posts/arch-revert-to-date.md index 823a730..ceb7eb3 100644 --- a/content/posts/arch-revert-to-date.md +++ b/content/posts/arch-revert-to-date.md @@ -3,6 +3,8 @@ title: Revert Arch linux packages to specific date date: 2017-09-11 image: https://www.lumalab.net/download/archlogo/arch-logo-shiny-dark.png subtitle: Arch is well known for going wrong, but today was the first time this affected me doing my job +tags: + - arch --- I'm one of those Arch users who _apparently_ doesn't use arch properly: I install updates daily, including packages from the AUR. This has the great benefit of giving me the most up-to-date packages available from upstream. However the downside of meaning I have the latest packages from upstream, meaning if something breaks, even temporarily, it breaks for me. diff --git a/content/tags/arch/_index.md b/content/tags/arch/_index.md new file mode 100644 index 0000000..f155a1a --- /dev/null +++ b/content/tags/arch/_index.md @@ -0,0 +1,3 @@ +--- +title: Arch Linux +--- diff --git a/layouts/partials/content.html b/layouts/partials/content.html index 92c82ff..e7e8d93 100644 --- a/layouts/partials/content.html +++ b/layouts/partials/content.html @@ -14,3 +14,5 @@ {{ .Content }} {{ end }} + +{{ partial "tags.html" . }} diff --git a/layouts/partials/tags.html b/layouts/partials/tags.html new file mode 100644 index 0000000..45fd906 --- /dev/null +++ b/layouts/partials/tags.html @@ -0,0 +1,7 @@ +{{ if .Params.tags }} +
+ {{ range .Params.tags }} +
{{ . }}
+ {{ end }} +
+{{ end }} diff --git a/package.json b/package.json index e120d8d..b6bef20 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "yaml-lint": "0.0.4" }, "dependencies": { - "bootstrap": "4.0.0-alpha.6", + "bootstrap": "4.0.0-beta", "club-alpha": "0.0.3", "font-awesome": "4.7.0", "jquery": "3.2.1", diff --git a/static/src/scss/style.scss b/static/src/scss/style.scss index 691bf3b..c1cc13a 100644 --- a/static/src/scss/style.scss +++ b/static/src/scss/style.scss @@ -5,6 +5,7 @@ $fa-font-path: "../fonts"; @import "node_modules/bootstrap/scss/_mixins"; @import "node_modules/bootstrap/scss/_transitions"; @import "node_modules/bootstrap/scss/_card"; +@import "node_modules/bootstrap/scss/_badge"; @import "node_modules/pygments-css/github"; @import "node_modules/lightgallery/src/sass/lightgallery";