You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
963 B
47 lines
963 B
8 years ago
|
Title: This is a template for a post
|
||
|
Date: 2016-5-14
|
||
|
Category: log
|
||
|
Tags: try-out
|
||
|
Slug: the-template-post
|
||
|
Summary: Write a tweet-lenght summary for syndication across social media
|
||
|
featured_image: https://cdn1.nyt.com/images/2017/02/26/world/26NKOREA3/26NKOREA3-articleLarge.jpg
|
||
|
|
||
|
This is a template you can use with a short description of some of the syntax.
|
||
|
|
||
|
**bold** *italics*
|
||
|
|
||
|
images:
|
||
|
![image description]({filename}images/myimage.png)
|
||
|
|
||
|
urls:
|
||
|
[http://homebrewserver.club/](This is our webpage)
|
||
|
|
||
|
references in text:
|
||
|
|
||
|
hello I need to be referenced[ref] this creates a numbered list at the bottom of the page, not bad no? it can be styles in the [css](http://homebrewserver.club/theme/css/main.css) by addressing the class simple-footnotes[/ref]
|
||
|
|
||
|
headlines
|
||
|
--
|
||
|
|
||
|
smaller headlines?
|
||
|
---
|
||
|
|
||
|
code blocks:
|
||
|
|
||
|
:::console
|
||
|
echo "for general console commands"
|
||
|
|
||
|
python
|
||
|
:::python
|
||
|
a = "python"
|
||
|
print "also for"
|
||
|
for i in a:
|
||
|
print i
|
||
|
|
||
|
line numbers
|
||
|
|
||
|
|
||
|
#!python
|
||
|
print("line1")
|
||
|
|