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

github.com/chipzoller/hugo-clarity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChip Zoller <chipzoller@gmail.com>2020-07-27 23:19:43 +0300
committerChip Zoller <chipzoller@gmail.com>2020-07-27 23:19:43 +0300
commit9ecd2101e4da5dd3f4e7d4eee5cf478c4ddbb6ca (patch)
tree5fc10a92a49c77bcde8dd005e416d8e79a455e95 /archetypes
parent7c6d7379e94c6f1b77252da28a6b0065ab6ad853 (diff)
updates
Diffstat (limited to 'archetypes')
-rw-r--r--archetypes/post.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/archetypes/post.md b/archetypes/post.md
new file mode 100644
index 0000000..05b05d7
--- /dev/null
+++ b/archetypes/post.md
@@ -0,0 +1,22 @@
+---
+title: "{{ replace .Name "-" " " | title }}" # Title of the blog post.
+date: {{ .Date }} # Date of post creation.
+description: "Article description." # Description used for search engine.
+featured: true # Sets if post is a featured post, making appear on the home page side bar.
+draft: true # Sets whether to render this page. Draft of true will not be rendered.
+toc: false # Controls if a table of contents should be generated for first-level links automatically.
+# menu: main
+featureImage: "/images/path/file.jpg" # Sets featured image on blog post.
+thumbnail: "/images/path/thumbnail.png" # Sets thumbnail image appearing inside card on homepage.
+shareImage: "/images/path/share.png" # Designate a separate image for social media sharing.
+codeMaxLines: 10 # Override global value for how many lines within a code block before auto-collapsing.
+codeLineNumbers: false # Override global value for showing of line numbers within code block.
+figurePositionShow: true # Override global value for showing the figure label.
+categories:
+ - Technology
+tags:
+ - Tag_name1
+ - Tag_name2
+---
+
+**Insert Lead paragraph here.** \ No newline at end of file