From b37c6826a6c8e12c67879ad86edb4ffc46615789 Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Wed, 8 Nov 2023 08:43:46 +0100 Subject: [PATCH] chore: use vanity url --- README.md | 6 ++++++ assets/comic.html | 2 +- assets/home.html | 2 +- go.mod | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bd2af96..84c186f 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,12 @@ > A cloner of the [XKCD](https://xkcd.com/) comics for archiving purposes. +## Install + +``` +go install go.hacdias.com/xkcd-archiver +``` + ## Usage ``` diff --git a/assets/comic.html b/assets/comic.html index b076685..b1ddf6f 100644 --- a/assets/comic.html +++ b/assets/comic.html @@ -35,7 +35,7 @@

The image for this comic could not be archive. It likely is an interactive comic.

{{ end }}

- This is an archival copy of the works + This is an archival copy of the works from xkcd.com.

diff --git a/assets/home.html b/assets/home.html index dd0d5f7..50247e7 100644 --- a/assets/home.html +++ b/assets/home.html @@ -18,7 +18,7 @@ {{ end }}

- This is an archival copy of the works + This is an archival copy of the works from xkcd.com.

diff --git a/go.mod b/go.mod index 73c59d4..9dd2d84 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/hacdias/xkcd-archiver +module go.hacdias.com/xkcd-archiver go 1.21