Various small fixes

This commit is contained in:
Julien Dessaux 2024-03-01 00:01:43 +01:00
parent 4df03f3242
commit 4585c07297
Signed by: adyxax
GPG key ID: F92E51B86E07177E
4 changed files with 5 additions and 4 deletions

View file

@ -7,7 +7,7 @@ MAKEFLAGS += --no-builtin-rules
CACHEDIR=/tmp/hugo-cache-$(USER)
DESTDIR=public/
HOSTNAME=$(shell hostname)
HOSTNAME=$(shell hostname -f)
REVISION=$(shell git rev-parse HEAD)
.PHONY: build

View file

@ -18,7 +18,7 @@ Have a good time!
## Dependencies
go is required for the search feature. Only go version >= 1.20 on linux amd64 (Gentoo) is being regularly tested.
go is required for the search feature. Only go version >= 1.22 on linux amd64 (Gentoo) is being regularly tested.
hugo is required in order to build the website html pages. Only hugo >= 0.111.3 is being regularly tested.

View file

@ -1,5 +1,5 @@
<footer>
<p>
<p>
&copy; 2009 - {{ now.Year }} | <a href="/docs/about-me/">Julien (Adyxax) Dessaux</a> | <a href="https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12" title="EUPL 1.2">Some rights reserved</a> | <a href="/blog/index.xml">RSS</a>
</p>
</p>
</footer>

View file

@ -1,6 +1,7 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive";
name = "hugo";
nativeBuildInputs = with pkgs; [ hugo ];
}