Compare commits

...

2 Commits

Author SHA1 Message Date
yova ca1f45b932 mods
2 years ago
yova bdcc896923 add credits
2 years ago

@ -9,12 +9,6 @@ git submodule update --init --recursive --remote
hugo serve
```
## used stuff
- hugo-bearblog theme: https://github.com/janraasch/hugo-bearblog
- reusable form: c) 2017 Prasanth Janardanan http://reusableforms.com/d/o5/html5-contact-form-send-email
- [rclone](https://rclone.org/sftp/) for sftp deployment
## deployment
- Deploy to an sftp host. Create `~/.config/rclone/rclone.conf` as follows for ssh keyfile authentication:
```
@ -26,3 +20,8 @@ key_file = ~/.ssh/KEYFILE
```
- run `sh deploy.sh` for deployment
## credits
- [Bearblog theme](https://janraasch.github.io/hugo-bearblog/) for [hugo](https://gohugo.io/) CMS
- Contact Form from [reusableforms - Prasanth Janardanan](http://reusableforms.com/d/o5/html5-contact-form-send-email)
- [rclone](https://rclone.org/sftp/) for sftp deployment

@ -6,8 +6,8 @@ theme = 'hugo-bearblog'
# Basic metadata configuration for your blog.
title = "yvwntr"
author = "yova"
copyright = "Copyright © 2021, yova"
author = "Johannes Valentin Winter"
copyright = "Copyright © 2022, Johannes Winter"
languageCode = "de-de"
# Generate a nice robots.txt for SEO
@ -22,7 +22,7 @@ ignoreErrors = ["error-disable-taxonomy"]
[params]
# The "description" of your website. This is used in the meta data of your generated html.
description = "blog website yova yvwntr"
description = "Personal website of Johannes Valentin Winter"
# The path to your "favicon". This should be a square (at least 32px x 32px) png-file.
# Hint: It's good practise to also put a "favicon.ico"-file into your "static"-folder.
@ -41,7 +41,7 @@ ignoreErrors = ["error-disable-taxonomy"]
# This theme will, by default, inject a made-with-line at the bottom of the page.
# You can turn it off, but we would really appreciate if you dont :-).
hideMadeWithLine = true
hideMadeWithLine = false
# By default, this theme displays dates with a format like "02 Jan, 2006", but
# you can customize it by setting the `dateFormat` param in your site's config
@ -49,3 +49,5 @@ ignoreErrors = ["error-disable-taxonomy"]
# for details. An example TOML config that uses [ISO
# 8601](https://en.wikipedia.org/wiki/ISO_8601) format:
# dateFormat = "2006-01-02"
tags = "blog, website, yova, yvwntr, Johannes Winter"

@ -4,4 +4,4 @@ One love. One mind. One power.
---
Das ist eine Baustelle.
Das ist eine Baustelle.

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
<head>
<meta http-equiv="X-Clacks-Overhead" content="GNU Walter Russell" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{{- partial "favicon.html" . -}}
<title>{{- block "title" . }}{{ with .Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{- end }}</title>
{{- partial "seo_tags.html" . -}}
<meta name="referrer" content="no-referrer-when-downgrade" />
{{ with .OutputFormats.Get "rss" -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
{{- partial "style.html" . -}}
<!-- A partial to be overwritten by the user.
Simply place a custom_head.html into
your local /layouts/partials-directory -->
{{- partial "custom_head.html" . -}}
</head>
<body>
<header>
{{- partial "header.html" . -}}
</header>
<main>
{{- block "main" . }}{{- end }}
</main>
<footer>
{{- partial "footer.html" . -}}
</footer>
<!-- A partial to be overwritten by the user.
Simply place a custom_body.html into
your local /layouts/partials-directory -->
{{- partial "custom_body.html" . -}}
</body>
</html>

@ -0,0 +1,6 @@
{{ if ne .Site.Params.hideMadeWithLine true }}
<hr style="margin-top: 20em">
<hr>
© 2022, Johannes Winter<br>
Find credits in the <a href="https://git.gugelfrei.de/websites/wntr/src/branch/main/README.md" target="_blank">gittea</a>
{{ end }}

@ -0,0 +1,8 @@
<!-- Primary Meta Tags -->
<meta name="title" content="{{ with .Title }}{{ . }}{{ else }}{{ .Site.Title }}{{ end }}" />
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" />
{{ with .Site.Params.tags }}
<meta name="keywords" content="{{ . }}" />
{{ end }}
<!-- Microdata -->
{{ template "_internal/schema.html" . }}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 802 KiB

Loading…
Cancel
Save