Commit
Author: Kevin Schoon [kevinschoon@gmail.com]
Hash: 6dd356f9eb6b9e6e36a9d4f761d51e5c9224998c
Timestamp: Wed, 28 Jul 2021 23:52:48 +0000 (3 years ago)

+8 -8 +/-3 browse
fix broken docs links
1diff --git a/docs/index.html b/docs/index.html
2index 4efa2e1..bd3b266 100644
3--- a/docs/index.html
4+++ b/docs/index.html
5 @@ -5,8 +5,8 @@
6 <meta charset="utf-8">
7 <title>Pomo
8 </title>
9- <link rel="stylesheet" href="/css/main.css">
10- <link rel="stylesheet" href="/css/pure.css">
11+ <link rel="stylesheet" href="/pomo/css/main.css">
12+ <link rel="stylesheet" href="/pomo/css/pure.css">
13 <meta name="viewport" content="width=device-width, initial-scale=1">
14 </head>
15 <body>
16 @@ -15,10 +15,10 @@
17
18 <main>
19 <div class="intro">
20- <a href="https://github.com/kevinschoon/pomo"> <img class="tomato" src="/tomato.png" /> </a>
21+ <a href="https://github.com/kevinschoon/pomo"> <img class="tomato" src="/pomo/tomato.png" /> </a>
22 <h1> Pomo </h1>
23 <h1> Pomodoro Command Line Interface </h1>
24- <img class="demo" src="/demo.gif" />
25+ <img class="demo" src="/pomo/demo.gif" />
26 </div>
27 <div class="readme">
28 <!-- raw HTML omitted -->
29 diff --git a/www/layouts/_default/baseof.html b/www/layouts/_default/baseof.html
30index 1695021..bbee805 100644
31--- a/www/layouts/_default/baseof.html
32+++ b/www/layouts/_default/baseof.html
33 @@ -7,8 +7,8 @@
34 {{ .Site.Title }}
35 {{- end }}
36 </title>
37- <link rel="stylesheet" href="/css/main.css">
38- <link rel="stylesheet" href="/css/pure.css">
39+ <link rel="stylesheet" href="/pomo/css/main.css">
40+ <link rel="stylesheet" href="/pomo/css/pure.css">
41 <meta name="viewport" content="width=device-width, initial-scale=1">
42 </head>
43 <body>
44 diff --git a/www/layouts/index.html b/www/layouts/index.html
45index e844ebc..dac07f4 100644
46--- a/www/layouts/index.html
47+++ b/www/layouts/index.html
48 @@ -2,10 +2,10 @@
49
50 <main>
51 <div class="intro">
52- <a href="https://github.com/kevinschoon/pomo"> <img class="tomato" src="/tomato.png" /> </a>
53+ <a href="https://github.com/kevinschoon/pomo"> <img class="tomato" src="/pomo/tomato.png" /> </a>
54 <h1> Pomo </h1>
55 <h1> Pomodoro Command Line Interface </h1>
56- <img class="demo" src="/demo.gif" />
57+ <img class="demo" src="/pomo/demo.gif" />
58 </div>
59 <div class="readme">
60 {{ index .Site.Data.readme "content" | markdownify }}