Skip to content

Commit ab280c0

Browse files
committedJan 29, 2021
updated style and tidied up
1 parent af681ac commit ab280c0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+228
-1271
lines changed
 

‎README.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
## Writing A Blog
2+
3+
Under /content/blog create a new markdownfile of any name, lets say myBlog.md
4+
5+
Add the following as a starting point
6+
7+
```
8+
---
9+
title: "My Blog Title
10+
type: "featured"
11+
description: "My Blog Description"
12+
draft: false
13+
---
14+
```
15+
---
16+
**NOTE**
17+
Setting draft to false means you can push it to the website view it but it won't appear on the blog landing page, you could access this via //blog/myBlog
18+
---
19+
20+
You can also add an image by adding the image under static/images and adding.
21+
22+
```
23+
image: "images/logo.png"
24+
```
25+
26+
You can then write your blog using markdown, this will be converted at compile time to html.
27+
28+
---
29+
**NOTE**
30+
The first paragraph is what is shown on the Blog landing page so make it short and succinct
31+
---
32+
33+
You can add a you tube video by adding the follwoing
34+
```
35+
{{< youtube C0DPdy98e4c >}}
36+
```

‎config.toml

+10-63
Original file line numberDiff line numberDiff line change
@@ -49,68 +49,25 @@ weight = 1
4949

5050
[[menu.main]]
5151
name = "Documentation"
52-
URL = "pages/documentation"
52+
URL = "docs"
5353
weight = 3
5454

5555
[[menu.main]]
5656
name = "Releases"
57-
URL = "documentation"
57+
URL = "releases"
5858
weight = 4
5959

6060
[[menu.main]]
6161
name = "Community"
6262
URL = "community"
6363
weight = 5
6464

65-
[[menu.main]]
66-
name = "FAQ"
67-
URL = "faq"
68-
weight = 7
69-
70-
# footer menu left
71-
#[[menu.footer_left]]
72-
#name = "About Us"
73-
#URL = "#"
74-
75-
#[[menu.footer_left]]
76-
#name = "Quick Start"
77-
#URL = "#"
78-
79-
#[[menu.footer_left]]
80-
#name = "Pricing"
81-
#URL = "pricing"
82-
83-
84-
# footer menu middle
85-
#[[menu.footer_middle]]
86-
#name = "Pricing"
87-
#URL = "pricing"
88-
89-
#[[menu.footer_middle]]
90-
#name = "Platform"
91-
#URL = "#"
92-
93-
#[[menu.footer_middle]]
94-
#name = "Features"
95-
#URL = "#"
96-
97-
# footer menu right
98-
#[[menu.footer_right]]
99-
#name = "Privacy Policy"
100-
#URL = "privacy-policy"
101-
102-
#[[menu.footer_right]]
103-
#name = "Terms & Conditions"
104-
#URL = "terms-conditions"
105-
106-
#[[menu.footer_right]]
107-
#name = "FAQ"
108-
#URL = "faq"
109-
11065
#################### default parameters ################################
11166
[params]
11267
logo = "images/logo.png"
113-
logo_width = "200px"
68+
logo2 = "images/logo2.png"
69+
logo_width = "250px"
70+
logo2_width = "75px"
11471
# Meta data
11572
description = "This is meta description"
11673
author = "Themefisher"
@@ -122,7 +79,7 @@ contact_form_action = "#" # contact form works with https://formspree.io
12279
#footer_menu_middle = "Product"
12380
#footer_menu_right = "Support"
12481
footer_title = "ArtemisCloud"
125-
footer_content = "Follow us on social ....."
82+
footer_content = "Follow us on social"
12683
# copyright
12784
copyright = "All code and documentation is licensed under the Apache License version 2.0. Marks may be trademarks or registered trademarks of their respective owners."
12885

@@ -132,22 +89,12 @@ enable = false
13289
preloader = "" # use jpg, png, svg or gif format.
13390

13491
############################# social site ########################
135-
#[[params.social]]
136-
#title = "facebook"
137-
#icon = "ti-facebook" # themify icon : https://themify.me/themify-icons
138-
#link = "#"
139-
140-
#[[params.social]]
141-
#title = "twitter"
142-
#icon = "ti-twitter-alt" # themify icon : https://themify.me/themify-icons
143-
#link = "#"
92+
[[params.social]]
93+
title = "twitter"
94+
icon = "ti-twitter-alt" # themify icon : https://themify.me/themify-icons
95+
link = "https://twitter.com/theartemiscloud"
14496

14597
[[params.social]]
14698
title = "github"
14799
icon = "ti-github" # themify icon : https://themify.me/themify-icons
148100
link = "https://github.com/ArtemisCloud"
149-
150-
#[[params.social]]
151-
#title = "linkedin"
152-
#icon = "ti-linkedin" # themify icon : https://themify.me/themify-icons
153-
#link = "#"

0 commit comments

Comments
 (0)
Please sign in to comment.