Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/djuelg/Shapez-Theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Juelg <djuelg@gmx.de>2016-05-22 12:12:52 +0300
committerDominik Juelg <djuelg@gmx.de>2016-05-22 12:12:52 +0300
commitef93d1b370a687dc6a44fa1e5ed164ca976a2a8c (patch)
tree2959f1d94ddc4a1ad2b5716305fb08e71b4667f2
parent637689cba94a299e6f8617706872033875bf6ab2 (diff)
added baseUrl to href and src
-rw-r--r--exampleSite/config.toml10
-rw-r--r--layouts/_default/list.html8
-rw-r--r--layouts/_default/single.html12
-rw-r--r--layouts/index.html4
-rw-r--r--layouts/partials/footer.html2
-rw-r--r--layouts/partials/head.html8
-rwxr-xr-xlayouts/partials/sidebar.svg6
-rwxr-xr-xlayouts/partials/start-screen.svg8
-rw-r--r--sample-config.toml10
9 files changed, 34 insertions, 34 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 7fa6a55..72184c8 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -15,21 +15,21 @@ PaginatePath = "page"
googleAnalytics = ""
[params]
- # Homepage Start-Screen, variables can be left empty
+ # Homepage Start-Screen, variables can be left empty, links dont start with /
title_l1 = "Shapez Theme"
title_l2 = ""
subtitle_l1 = "Shapez is a theme created for hugo"
subtitle_l2 = "with SVG pictures, CSS3 magic,"
subtitle_l3 = "struggle and love."
- title_link = "/about/"
+ title_link = "about/"
subtitle_link = ""
message = "I'm a optional important message!"
# Enter links for the buttons (button one has the house sign), shouldn't be left empty
- button_1 = "/"
- button_2 = "/playground/"
- button_3 = "/about/"
+ button_1 = ""
+ button_2 = "playground/"
+ button_3 = "about/"
keywords = "hugo, blog, Shapez, SVG, design"
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index e3593b9..4e2ffc5 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -2,7 +2,7 @@
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
<head>
{{ partial "head.html" . }}
- <script src="/js/single-text-align.js"></script>
+ <script src="{{ .Site.BaseURL }}js/single-text-align.js"></script>
</head>
<body>
<div class="wrapper">
@@ -11,9 +11,9 @@
<img src="{{ .Site.BaseURL }}{{ .Site.Params.logo }}">
<h3>{{ .Site.Title }}</h3>
<text>·</text>
- <a href="{{ .Site.Params.button_1 }}">Home</a>
- <a href="{{ .Site.Params.button_2 }}">Playground</a>
- <a href="{{ .Site.Params.button_3 }}" rel="me">About</a>
+ <a href="{{ .Site.BaseURL }}{{ .Site.Params.button_1 }}">Home</a>
+ <a href="{{ .Site.BaseURL }}{{ .Site.Params.button_2 }}">Playground</a>
+ <a href="{{ .Site.BaseURL }}{{ .Site.Params.button_3 }}" rel="me">About</a>
</div>
<div class="side-nav">
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index c5951ce..20d4a9d 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -2,17 +2,17 @@
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
<head>
{{ partial "head.html" . }}
- <script src="/js/single-text-align.js"></script>
+ <script src="{{ .Site.BaseURL }}js/single-text-align.js"></script>
</head>
<body>
<div class="wrapper">
<div class="top-nav">
<img src="{{ .Site.BaseURL }}{{ .Site.Params.logo }}">
- <h3><a href="{{ .Site.Params.button_3 }}" rel="me">{{ .Site.Title }}</a></h3>
+ <h3><a href="{{ .Site.BaseURL }}{{ .Site.Params.button_3 }}" rel="me">{{ .Site.Title }}</a></h3>
<text>·</text>
- <a href="{{ .Site.Params.button_1 }}">Home</a>
- <a href="{{ .Site.Params.button_2 }}">Playground</a>
- <a href="{{ .Site.Params.button_3 }}" rel="me">About</a>
+ <a href="{{ .Site.BaseURL }}{{ .Site.Params.button_1 }}">Home</a>
+ <a href="{{ .Site.BaseURL }}{{ .Site.Params.button_2 }}">Playground</a>
+ <a href="{{ .Site.BaseURL }}{{ .Site.Params.button_3 }}" rel="me">About</a>
<text>·</text>
<a href="{{if .PrevInSection }}{{.PrevInSection.Permalink}}{{ else }}javascript:void(0);{{ end }}"
{{if not .PrevInSection }} style="color: gray !important; cursor: not-allowed;" {{ end }}>Prev</a>
@@ -33,7 +33,7 @@
</div>
</div>
<div class="article-meta-inf">
- <a href="/about/" rel="me">by {{ .Site.Author.name }} </a>
+ <a href="{{ .Site.BaseURL }}{{ .Site.Params.button_3 }}" rel="me">by {{ .Site.Author.name }} </a>
<text> &nbsp; · &nbsp; {{ .Date.Format "2006-01-02" }}</text>
<text> &nbsp; · &nbsp; {{ .ReadingTime }} minutes reading time</text>
<a href="javascript:void(0);">{{ partial "left.svg" . }}</a>
diff --git a/layouts/index.html b/layouts/index.html
index cd559e5..12b3c31 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -8,8 +8,8 @@
<div class="start-screen">
<div class="mobile">
<div><img src="{{ .Site.BaseURL }}{{ .Site.Params.logo }}"></div>
- <div><a href="{{ .Site.Params.button_2 }}">Playground</a></div>
- <div><a href="{{ .Site.Params.button_3 }}" rel="me">About</a></div>
+ <div><a href="{{ .Site.BaseURL }}{{ .Site.Params.button_2 }}">Playground</a></div>
+ <div><a href="{{ .Site.BaseURL }}{{ .Site.Params.button_3 }}" rel="me">About</a></div>
</div>
{{ partial "start-screen.svg" . }}
</div>
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index c0d12fa..97ae15f 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -2,6 +2,6 @@
<div class="footer">
<p> {{ .Site.Copyright }} </p>
<p>·</p>
- <a href="/about/" rel="me"><p> {{ .Site.Author.name }} </p></a>
+ <a href="{{ .Site.BaseURL }}{{ .Site.Params.button_3 }}" rel="me"><p> {{ .Site.Author.name }} </p></a>
</div>
</footer> \ No newline at end of file
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index a6dd050..17bb212 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -8,10 +8,10 @@
{{ "<!-- Site Icon -->" | safeHTML }}
<link rel="shortcut icon" href="{{ .Site.BaseURL }}{{ .Site.Params.logo }}">
{{ "<!-- Load CSS config -->" | safeHTML }}
-<link rel="stylesheet" href="/css/normalize.css" type="text/css">
-<link rel="stylesheet" href="/css/default.css" type="text/css">
-<link rel="stylesheet" href="/css/mobile.css" type="text/css">
-<link rel="stylesheet" href="/css/code-style.min.css">
+<link rel="stylesheet" href="{{ .Site.BaseURL }}css/normalize.css" type="text/css">
+<link rel="stylesheet" href="{{ .Site.BaseURL }}css/default.css" type="text/css">
+<link rel="stylesheet" href="{{ .Site.BaseURL }}css/mobile.css" type="text/css">
+<link rel="stylesheet" href="{{ .Site.BaseURL }}css/code-style.min.css" type="text/css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.3.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
diff --git a/layouts/partials/sidebar.svg b/layouts/partials/sidebar.svg
index 5cdc6d6..19777aa 100755
--- a/layouts/partials/sidebar.svg
+++ b/layouts/partials/sidebar.svg
@@ -55,17 +55,17 @@
<path d="M6535 3058c-303-383-334-418-467-529-258-217-387-375-469-576-67-163-83-245-82-418 0-181 25-290 98-435 59-119 94-169 174-254 88-91 160-146 267-201 171-88 330-122 518-112 374 21 694 238 856 580 83 174 85 200 75 1330l-7 867h-763l-200-252z" filter="url(#a)" transform="matrix(.125 0 0 -.125 -574.46 1102.5)"/>
- <a class="side-nav" xlink:title="Home" xlink:href="{{ .Site.Params.button_1 }}">
+ <a class="side-nav" xlink:title="Home" xlink:href="{{ .Site.BaseURL }}{{ .Site.Params.button_1 }}">
<circle cx="240" cy="-270" r="90" fill="transparent" />
<path d="M540.76 254.8L294.5 38.2c-11.47-10.1-30.05-10.1-41.38 0L6.94 254.8c-11.47 10.1-8.4 18.27 6.9 18.27h75.95v221.77c0 12.1 9.94 22.1 22.1 22.1h92.95V371.07c0-12.08 9.94-22.1 22.1-22.1h93.87c12.24 0 22.1 9.8 22.1 22.1v145.9h92.96c12.24 0 22.1-9.95 22.1-22.12V273h75.97c15.07 0 18.13-8.1 6.8-18.2z" transform="matrix(.213 0 0 .247 183.656 -339.75)" filter="url(#e)"/>
</a>
- <a class="side-nav" xlink:title="Playground" xlink:href="{{ .Site.Params.button_2 }}">
+ <a class="side-nav" xlink:title="Playground" xlink:href="{{ .Site.BaseURL }}{{ .Site.Params.button_2 }}">
<circle cx="240" cy="0" r="90" fill="transparent" />
<path d="M211.88 124.5V91c0-50.18-40.82-91-91-91s-91 40.82-91 91v33.5c-4 .14-8 3.78-8 8.25v.5c0 4.55 4.03 8.5 8.58 8.5H43.8l10.28 90.06c.62 5.48 5.63 9.95 11.13 9.95h112c5.5 0 10.5-4.48 11.08-9.94l9.67-90.05h14c4.57 0 7.93-3.95 7.93-8.5v-.5c0-4.48-3-8.1-8-8.24zm-91-107.5c40.8 0 74 33.2 74 74v1.75h-148V91c0-40.8 33.2-74 74-74z" transform="matrix(.492 0 0 .496 179.077 -67.192)" filter="url(#b)"/>
</a>
- <a class="side-nav" xlink:title="About this page" xlink:href="{{ .Site.Params.button_3 }}">
+ <a class="side-nav" xlink:title="About this page" xlink:href="{{ .Site.BaseURL }}{{ .Site.Params.button_3 }}">
<circle cx="240" cy="270" r="90" fill="transparent" />
<path d="M62.16 0c6.7 0 10.05 4.57 10.05 9.8 0 6.5-5.8 12.54-13.4 12.54-6.33 0-10.03-3.75-9.85-9.94 0-5.22 4.4-12.4 13.2-12.4zM41.54 100c-5.28 0-9.16-3.26-5.46-17.6l6.07-25.47c1.06-4.08 1.23-5.7 0-5.7-1.6 0-8.45 2.8-12.5 5.58L27 52.4C39.86 41.5 54.66 35.08 61 35.08c5.3 0 6.17 6.36 3.53 16.15l-6.95 26.76c-1.23 4.73-.7 6.36.53 6.36 1.6 0 6.8-1.96 11.9-6.04l3 4.08C60.5 95.1 46.83 100 41.54 100z" transform="matrix(1.087 0 0 1.2 178.888 205.7)" filter="url(#f)"/>
</a>
diff --git a/layouts/partials/start-screen.svg b/layouts/partials/start-screen.svg
index 669d664..e978460 100755
--- a/layouts/partials/start-screen.svg
+++ b/layouts/partials/start-screen.svg
@@ -50,7 +50,7 @@
</g>
</g>
- <a class="start-screen" xlink:title="Home" xlink:href="{{ .Site.Params.button_1 }}">
+ <a class="start-screen" xlink:title="Home" xlink:href="{{ .Site.BaseURL }}{{ .Site.Params.button_1 }}">
<path d="M1021.232 930.768c.156.316-3.012 11.214-6.9 24.236-7.012 23.014-8.582 29.586-6.93 30.146.354.12 28.41-.368 62.338-1.102l61.63-1.342 1.324-4.682c.84-2.478 3.89-13.416 7.058-24.314 10.19-35.882 32.778-100.188 44.298-126.41 1.474-3.184 3.986-9.042 5.662-13.21 3.15-7.352 16.334-35.378 19.356-40.8.796-1.572 2.746-5.384 4.18-8.45 1.474-3.184 3.384-6.878 4.18-8.45 1.948-3.418 7.398-13.674 10.104-18.94 1.91-3.694 14.232-24.908 25.518-43.842 2.702-4.478 5.204-8.366 5.56-8.64.396-.392 1.748-2.828 3.18-5.5 1.314-2.712 3.458-5.932 4.608-7.384 1.586-1.962 1.668-2.592.486-2.598-.946.074-29.514.52-63.442 1.254l-61.63 1.342-6.036 9.268c-3.296 5.066-8.224 13.394-11.166 18.58s-6.876 11.746-8.94 14.73c-1.906 2.906-5.762 9.624-8.35 14.93-2.548 5.188-5.172 9.824-5.726 10.294s-2.622 4.242-4.574 8.448c-3.822 7.782-11.504 23.07-13.69 26.802-1.392 2.554-4.618 9.354-11.63 24.606-9.084 19.812-9.762 21.424-14.15 32.04-2.314 5.662-5.704 13.722-7.498 17.85-3.588 8.256-29.21 80.348-28.82 81.138z"/>
<g class="svg-icon" filter="url(#a)" transform="matrix(.054 -.134 .134 .054 1063.4 846.58)">
@@ -58,7 +58,7 @@
</g>
</a>
- <a class="start-screen" xlink:title="Playground" xlink:href="{{ .Site.Params.button_2 }}">
+ <a class="start-screen" xlink:title="Playground" xlink:href="{{ .Site.BaseURL }}{{ .Site.Params.button_2 }}">
<path d="M1204.7 551.855c.03.35-6.87 9.315-15.21 19.99-14.87 18.815-18.715 24.345-17.385 25.465.285.24 26.505 9.98 58.265 21.625l57.695 21.145 2.93-3.865c1.68-1.995 8.485-11.04 15.385-20.005 22.495-29.605 66.825-81.09 87.045-101.245 2.525-2.42 6.985-6.945 10.055-10.205 5.595-5.68 28.015-26.905 32.79-30.84 1.31-1.17 4.505-4 6.95-6.325 2.525-2.42 5.64-5.155 6.95-6.325 3.05-2.465 11.835-10.005 16.26-13.91 3.115-2.735 22.26-17.95 39.615-31.425 4.135-3.175 7.87-5.875 8.3-6 .51-.22 2.65-1.99 4.95-3.95 2.205-2.04 5.365-4.25 6.96-5.18 2.185-1.245 2.49-1.8 1.395-2.235-.905-.275-27.585-10.24-59.345-21.885l-57.695-21.145-8.97 6.41c-4.9 3.505-12.5 9.445-17.115 13.19s-10.65 8.405-13.65 10.425c-2.825 2.005-8.845 6.84-13.175 10.825-4.25 3.89-8.37 7.24-9.055 7.475s-3.975 2.985-7.315 6.18c-6.375 5.835-19.06 17.235-22.445 19.905-2.22 1.865-7.685 7.005-19.735 18.615-15.63 15.09-16.845 16.34-24.775 24.6-4.205 4.415-10.28 10.665-13.445 13.845-6.33 6.36-56.305 63.97-56.23 64.845z"/>
<g class="svg-icon" filter="url(#c)" transform="matrix(.262 -.283 .283 .262 1272.1 492.49)">
@@ -66,7 +66,7 @@
</g>
</a>
- <a class="start-screen" xlink:title="About this page" xlink:href="{{ .Site.Params.button_3 }}">
+ <a class="start-screen" xlink:title="About this page" xlink:href="{{ .Site.BaseURL }}{{ .Site.Params.button_3 }}">
<path d="M1502.72 269.322c-.094.346-9.678 6.48-21.2 13.728-20.5 12.75-26.042 16.688-25.15 18.196.188.32 21.68 18.49 47.772 40.33l47.44 39.697 4.07-2.66c2.277-1.307 11.805-7.567 21.38-13.69 31.396-20.36 90.91-53.986 116.918-66.164 3.224-1.43 8.988-4.19 13.008-6.24 7.227-3.462 35.696-15.898 41.547-18 1.635-.655 5.616-2.25 8.72-3.633 3.225-1.41 7.105-2.944 8.75-3.608 3.723-1.29 14.607-5.428 20.13-7.625 3.872-1.523 27.184-9.392 48.21-16.237 4.983-1.606 9.438-2.872 9.9-2.86.547-.032 3.184-.99 6.042-2.058 2.776-1.184 6.525-2.208 8.34-2.533 2.51-.414 2.977-.838 2.09-1.627-.763-.57-22.633-19.104-48.71-40.947l-47.42-39.68-10.675 3.01c-5.83 1.65-15.065 4.69-20.707 6.657-5.632 1.976-12.94 4.344-16.454 5.222-3.375.928-10.703 3.476-16.175 5.748-5.35 2.243-10.397 4.024-11.11 4-.737-.013-4.8 1.465-9.045 3.36-8 3.353-23.908 9.812-28.024 11.18-2.738 1.02-9.66 4.02-25.024 10.9-19.94 8.955-21.52 9.72-31.844 14.846-5.49 2.744-13.376 6.584-17.45 8.525-8.148 3.865-75.1 41.36-75.324 42.215z"/>
<g class="svg-icon" filter="url(#b)" transform="rotate(-57.3 767.186 -534) scale(.46)">
@@ -78,7 +78,7 @@
<path d="M2110.425 77.75c-13.75.625-26.125 1.625-27.5 2.25s-14.25 1.75-28.625 2.5c-14.5.75-26.875 1.875-27.5 2.375-.75.625-5.25 1.5-10.125 1.875-15.125 1.5-28.75 3.5-30 4.625-.75.5-8 1.5-16.125 2.25s-15.375 1.75-16.25 2.5c-.75.625-7.25 2.125-14.5 3.25-7.25 1.25-13.625 2.5-14.375 3-2.125 1.375-14.75 3.75-20.25 3.75-3 .125-5.375.625-5.375 1.25s-2.375 1.5-5.25 2c-3 .5-5.875 1.375-6.625 1.875-.625.5-4.875 1.875-9.375 2.875-16.375 4-25.625 6.125-28.125 6.5-3.125.5-22.375 5.75-23 6.375-.75.625 61.25 103 62.5 103 .5 0 6-1.125 12-2.625 156.5-36.75 324.875-36.25 482.5 1.5 234.75 56.125 444 193.625 590.125 387.75 105 139.375 173.375 303.75 198.25 476.25 1.75 12.125 3.25 23.625 3.25 25.25 0 1.75.5 3.125 1.125 3.125s1.375 2.875 1.875 6.25l.875 6.375 8.375-7c4.625-3.75 38.25-31.75 74.625-62.25 68.75-57.375 67.375-56 64.375-62.75-.5-1.375-3.125-12.375-5.75-24.375s-5.125-22.125-5.5-22.5c-.5-.375-1.875-5.125-3.125-10.625-1.125-5.5-2.625-10.625-3.125-11.25-.5-.75-1.25-3.75-1.75-6.75-.5-3.125-1.625-7.375-2.625-9.375-.875-2.125-2.625-7.25-3.75-11.375s-2.625-8.125-3.125-8.75c-.5-.75-1.375-4.125-1.875-7.5-.5-3.5-1.875-8-3.125-10-1.125-2.125-2.875-6.625-3.75-10-1-3.5-2.375-7.375-3.25-8.75s-1.875-4.875-2.375-7.875c-.5-2.875-1.25-5.25-1.75-5.25s-1.75-2.375-2.625-5.375c-.875-2.875-3-8.25-4.625-11.875s-2.875-7.625-2.875-8.75c0-1.25-.5-2.75-1.125-3.375-.625-.75-2.25-4.125-3.625-7.5-3.375-8.375-11-26.625-13.25-31.25-1-2.125-3.625-7.75-5.75-12.5-2.125-4.875-4.625-10.5-5.625-12.5-3.375-7.375-18.625-38.375-20.875-42.5-3.375-6.125-4.125-7.5-4.75-8.125-1.125-1.125-6.25-12.125-6.25-13.375 0-.625-1.125-2.25-2.5-3.5-1.25-1.125-3-4.125-3.75-6.375-.875-2.375-1.875-4.25-2.5-4.25s-1.75-2.125-2.5-4.625c-.875-2.625-2.25-5.375-3-6-.875-.75-2.5-3.375-3.625-6-1.25-2.5-2.75-4.625-3.25-4.625s-1.875-2.125-3-4.75c-2.375-5.5-6.625-12.875-8-13.875-.5-.375-2-2.875-3.125-5.375-1.25-2.625-2.75-4.75-3.5-4.75-.625 0-1.25-.75-1.25-1.625s-1.625-3.875-3.75-6.625c-2-2.625-3.75-5.625-3.75-6.5 0-.75-.5-1.5-1-1.5-.625 0-1.75-1.375-2.5-3-1.25-2.75-6.75-10.75-16.5-24-2-2.875-4.625-7-5.75-9.125-1.125-2.25-2.75-4.375-3.75-4.75s-1.75-1.125-1.75-1.875c0-1.375-6.375-10.125-7.75-10.75-.625-.25-1-1.25-1-2.125s-.875-1.875-1.875-2.375c-1-.375-1.875-1.5-1.875-2.5s-.5-2-1-2.25-3.625-3.75-6.875-7.875-6.5-8.125-7.125-9c-.75-.875-1.25-2.125-1.25-2.75 0-.75-1.375-2.25-3.125-3.375s-3.125-2.5-3.125-3.25c0-1.5-16.375-21-17.75-21-.5 0-1-.875-1-1.875 0-1.125-.875-2.25-1.875-2.625-1-.5-1.875-1.25-1.875-1.75s-3.25-4.5-7.125-8.875c-4-4.375-10.875-11.875-15.125-16.75-4.375-4.75-11.375-12.25-15.375-16.375-4-4.25-7.375-8.25-7.375-8.75-.125-.625-8.875-9.625-19.5-19.875-10.625-10.375-24.125-23.375-30-29.125-5.875-5.625-11-10.25-11.375-10.25-.75 0-25.875-22.75-26.375-24.125-.25-.5-1.25-.875-2.25-.875s-1.75-.875-1.75-1.875-.5-1.875-1.25-1.875c-.625 0-6.75-4.75-13.5-10.5-6.75-5.625-13.875-11.5-16-12.75-2-1.25-3.875-2.625-4.25-3.125s-4.875-4-10-7.75c-5.125-3.875-10.125-7.625-11-8.375-4.375-3.875-18.625-14.25-21.125-15.375-1.625-.75-2.875-1.625-2.875-2.125 0-1.125-11.875-8.75-13.625-8.75-.625 0-1.875-1.125-2.625-2.5s-2-2.5-3-2.5c-.875 0-3.5-1.75-5.75-3.75-2.25-2.125-5-3.75-5.875-3.75-1 0-2-.875-2.375-1.875-.5-1-1.375-1.875-2.25-1.875-.75 0-3.625-1.75-6.25-3.75-2.75-2.125-5.75-3.75-6.625-3.75s-1.625-.5-1.625-1.125-1.125-1.625-2.5-2-3.25-1.5-4.125-2.375c-1.5-1.5-7.25-5-17.125-10.25-2.375-1.375-4.875-3.125-5.375-4-.5-.75-1.625-1.5-2.5-1.5-1.25 0-9.625-5-14-8.375-.625-.625-4.625-2.625-8.75-4.625s-9.125-4.875-11.25-6.25c-2-1.5-6.875-4-10.625-5.75-3.75-1.625-8.25-4-10-5.125-3.75-2.375-12-6.625-25.375-13-5.25-2.625-10-5.125-10.25-5.75-.375-.5-2.5-1.375-4.75-1.875-2.125-.375-7.875-3-12.5-5.625-4.75-2.75-9.25-4.875-10.125-4.875s-4.125-1.375-7.125-2.875c-3-1.625-7.625-3.625-10.25-4.5-2.5-.875-4.625-2-4.625-2.5 0-.375-2.625-1.625-5.875-2.5-3.375-1-6.875-2.25-7.875-2.625-6.125-3-11.625-5-13.125-5-1 0-1.875-.625-1.875-1.25 0-.75-1.125-1.25-2.375-1.25-1.375 0-2.875-.625-3.25-1.25-.375-.75-2-1.25-3.625-1.25-1.5 0-3.25-.5-3.875-1-.75-.5-4.375-2-8.125-3.25-3.75-1.375-7.375-2.75-8.125-3.25-.625-.5-8-3.125-16.25-5.75s-15.25-5.125-15.625-5.5c-.625-.75-15.25-5.125-28.125-8.5-4.125-1-7.75-2.25-8.125-2.625-.625-.75-10-3.375-23.125-6.5-6.875-1.5-14.5-3.75-17.5-4.875-1.375-.625-6.75-2-11.875-3.125s-10.375-2.5-11.5-3.25c-1.25-.625-3.75-1.125-5.625-1.125-4.375 0-18.25-2.75-19.125-3.875-.375-.375-6.75-1.75-14.375-3-7.5-1.25-14-2.625-14.375-3.25s-7.375-1.625-15.625-2.375C2369.8 93 2362.55 92 2361.8 91.375s-9.75-2.125-20.125-3.25c-10.25-1.25-19.375-2.625-20.125-3.25-.625-.625-13-1.625-27.5-2.375-14.375-.75-27.25-1.875-28.625-2.5-6.875-3.125-103-4.5-155-2.25z" id="path3583"/>
</g>
- <a id="start-screen-orange" xlink:title="Scroll down" xlink:href="#scroll-down">
+ <a id="start-screen-orange" xlink:title="Scroll down" xlink:href="{{ .Site.BaseURL }}#scroll-down">
<path d="M2068.803 2115.878c29.534 24.524 54.15 44.736 54.646 44.95.497.11 7.86-5.593 16.5-12.728l54.508-45.057 38.878-32.006-17.6-14.422-17.602-14.423-23.757 19.467c-13.085 10.7-29.73 24.462-37.098 30.476l-13.342 11.008-36.918-30.628-36.795-30.524-17.524 13.957c-9.65 7.743-17.53 14.267-17.535 14.578-.006.31 24.106 20.723 53.638 45.35z" id="path3599"/>
<circle cx="2125" cy="2080" r="120" fill="transparent" />
</a>
diff --git a/sample-config.toml b/sample-config.toml
index 7fa6a55..72184c8 100644
--- a/sample-config.toml
+++ b/sample-config.toml
@@ -15,21 +15,21 @@ PaginatePath = "page"
googleAnalytics = ""
[params]
- # Homepage Start-Screen, variables can be left empty
+ # Homepage Start-Screen, variables can be left empty, links dont start with /
title_l1 = "Shapez Theme"
title_l2 = ""
subtitle_l1 = "Shapez is a theme created for hugo"
subtitle_l2 = "with SVG pictures, CSS3 magic,"
subtitle_l3 = "struggle and love."
- title_link = "/about/"
+ title_link = "about/"
subtitle_link = ""
message = "I'm a optional important message!"
# Enter links for the buttons (button one has the house sign), shouldn't be left empty
- button_1 = "/"
- button_2 = "/playground/"
- button_3 = "/about/"
+ button_1 = ""
+ button_2 = "playground/"
+ button_3 = "about/"
keywords = "hugo, blog, Shapez, SVG, design"