startgitStatic page generator for git repositories |
git clone git://git.dimitrijedobrota.com/startgit.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING | |
commit | aa216ca906532a1178d5a92d9a4efdcb2dd475c5 |
parent | 7ceb9e7270b5dfefbbfdd5397ef024d2f57b7fdf |
author | Dimitrije Dobrota <mail@dimitrijedobrota.com> |
date | Mon, 20 Jan 2025 18:04:33 +0100 |
Fix README and LICENCE links
Diffstat:M | CMakeLists.txt | | | +- |
M | source/main.cpp | | | ++-- |
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -4,7 +4,7 @@ include(cmake/prelude.cmake)
project(
startgit
VERSION 0.1.25
VERSION 0.1.26
DESCRIPTION "Static page generator for git repositories"
HOMEPAGE_URL "https://git.dimitrijedobrota.com/stargit.git"
LANGUAGES CXX
diff --git a/source/main.cpp b/source/main.cpp
@@ -133,9 +133,9 @@ void write_title(std::ostream& ost,
.add(html::text(" | "))
.add(html::a("Refs").set("href", relpath + "refs.html"))
.add(html::text(" | "))
.add(html::a("README").set("href", "./README.html"))
.add(html::a("README").set("href", relpath + "README.html"))
.add(html::text(" | "))
.add(html::a("LICENSE").set("href", "./LICENSE.html"))
.add(html::a("LICENSE").set("href", relpath + "LICENSE.html"))
.add(html::text(" | "))
.add(dropdown));