Add blog functionality (#1)

This commit was merged in pull request #1.
This commit is contained in:
2019-10-14 16:06:54 +02:00
committed by Max Mehl
parent 7ad089ec54
commit e678442198
56 changed files with 1461 additions and 52 deletions

View File

@@ -4,7 +4,7 @@ date: 2014-09-28
linktitle: Creating a New Theme
title: Creating a New Theme
highlight: true
draft: true
draft: false
---

View File

@@ -14,7 +14,9 @@ categories = [
"golang",
]
highlight = "true"
draft = true
draft = false
headerimage = "placeholder.jpg"
headercredits = "Unsplash, [Dlanor S](https://unsplash.com/photos/2xEQDxB0ss4)"
+++
Hugo uses the excellent [go][] [html/template][gohtmltemplate] library for

View File

@@ -2,7 +2,7 @@
title = "Getting Started with Hugo"
description = ""
tags = [
"radio lockdown",
"RadioLockdown",
"golang",
"hugo",
"development",
@@ -13,7 +13,7 @@ categories = [
"golang",
]
highlight = "true"
draft = true
draft = false
+++
## Step 1. Install Hugo

View File

@@ -3,7 +3,7 @@ date: 2014-03-10
linktitle: Migrating from Jekyll
title: Migrate to Hugo from Jekyll
highlight: "true"
draft: true
draft: false
---
## Move static content to `static`

25
content/blog/test.md Executable file
View File

@@ -0,0 +1,25 @@
+++
title = "TEST ARTICLE"
description = ""
tags = [
"test"
]
date = "2018-04-02"
categories = [
"Development",
]
highlight = "true"
draft = false
headerimage = "placeholder.jpg"
headercredits = "Unsplash, [Dlanor S](https://unsplash.com/photos/2xEQDxB0ss4)"
+++
LOREM IPSUM Hugo uses the excellent [go][] [html/template][gohtmltemplate] library for
its template engine. It is an extremely lightweight engine that provides a very
small amount of logic. In our experience that it is just the right amount of
logic to be able to create a good static website. If you have used other
template systems from different languages or frameworks you will find a lot of
similarities in go templates.
This document is a brief primer on using go templates. The [go docs][gohtmltemplate]
provide more details.