Various small fixes
This commit is contained in:
parent
4df03f3242
commit
4585c07297
4 changed files with 5 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<footer>
|
||||
<p>
|
||||
<p>
|
||||
© 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>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
|
||||
pkgs.mkShell {
|
||||
LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive";
|
||||
name = "hugo";
|
||||
nativeBuildInputs = with pkgs; [ hugo ];
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue