Better code examples.
This commit is contained in:
parent
50790676d3
commit
f0b522d804
1 changed files with 34 additions and 20 deletions
54
README.md
54
README.md
|
@ -20,22 +20,36 @@ A minimalist [Pelican](http://blog.getpelican.com/) theme.
|
||||||
|
|
||||||
See what you can customize.
|
See what you can customize.
|
||||||
|
|
||||||
Maybe some Pelican settings not work properly.
|
> Maybe some Pelican settings not work properly.
|
||||||
|
|
||||||
| Name | What does it do? | Code |
|
| Name | What does it do? |
|
||||||
|:----:|------------------|:----:|
|
|:----:|------------------|
|
||||||
| AUTHOR_SHORT_DESC | Short description to show below author name. | `AUTHOR_SHORT_DESC = 'Web Developer` |
|
| AUTHOR_SHORT_DESC | Short description to show below author name. |
|
||||||
| AUTHOR_IMG_URL | Profile picture to show above author name. | `AUTHOR_IMG_URL = '/static/img/me.png'` |
|
| AUTHOR_IMG_URL | Profile picture to show above author name. |
|
||||||
| COPYRIGHT_YEAR | Copyright year to display on footer. | `COPYRIGHT_YEAR = 2015` |
|
| COPYRIGHT_YEAR | Copyright year to display on footer. |
|
||||||
| CC_LICENSE | Creative Commons License to show on footer. | `CC_LICENSE = { 'name': 'Creative Commons Attribution-ShareAlike', 'version':'4.0', 'slug': 'by-sa')` |
|
| CC_LICENSE | Creative Commons License to show on footer. |
|
||||||
| MENUITEMS | A list of tuples (Title, URL) for additional menu items to appear on main menu. | Same as Pelican docs. |
|
| MENUITEMS | A list of tuples (Title, URL) for additional menu items to appear on main menu. |
|
||||||
| LINKS | A list of tuples (Title, URL) for links to appear on the sidebar menu. | Same as Pelican docs. |
|
| LINKS | A list of tuples (Title, URL) for links to appear on the sidebar menu. |
|
||||||
| SOCIAL | A list of tuples (name, URL) to appear in the "social" section. | See below. |
|
| SOCIAL | A list of tuples (name, URL) to appear in the "social" section. |
|
||||||
| MAIN_MENU | Show main menu. | `MAIN_MENU = True` |
|
| MAIN_MENU | Show main menu. |
|
||||||
| DISQUS_SITENAME | Disqus website's shortname to activate Disqus comment system. | `DISQUS_SITENAME = 'yoursite'` |
|
| DISQUS_SITENAME | Disqus website's shortname to activate Disqus. |
|
||||||
| GOOGLE_ANALYTICS | Set to ‘UA-XXXX-YYYY’ to activate Google Analytics. | `GOOGLE_ANALYTICS = 'UA-1234-5678'` |
|
| GOOGLE_ANALYTICS | Activate Google Analytics. |
|
||||||
| GOOGLE_TAG_MANAGER | Set to ‘GTM-XXXXXX’ to activate Google Tag Manager. | `GOOGLE_TAG_MANAGER = GTM-ABCDEF` |
|
| GOOGLE_TAG_MANAGER | Activate Google Tag Manager. |
|
||||||
| STATUSCAKE | Show StatusCake Uptime badge on footer. | `STATUSCAKE = { 'trackid': 'your-id', 'days': 7 }` |
|
| STATUSCAKE | Show StatusCake Uptime badge on footer. |
|
||||||
|
|
||||||
|
### Example
|
||||||
|
|
||||||
|
```python
|
||||||
|
AUTHOR_SHORT_DESC = 'Web Developer
|
||||||
|
AUTHOR_IMG_URL = '/static/img/me.png'
|
||||||
|
COPYRIGHT_YEAR = 2015
|
||||||
|
CC_LICENSE = { 'name': 'Creative Commons Attribution-ShareAlike', 'version':'4.0', 'slug': 'by-sa') }
|
||||||
|
MAIN_MENU = True
|
||||||
|
DISQUS_SITENAME = 'yoursite'
|
||||||
|
GOOGLE_ANALYTICS = 'UA-1234-5678'
|
||||||
|
GOOGLE_TAG_MANAGER = GTM-ABCDEF
|
||||||
|
STATUSCAKE = { 'trackid': 'your-id', 'days': 7 }
|
||||||
|
```
|
||||||
|
|
||||||
### How main menu works?
|
### How main menu works?
|
||||||
|
|
||||||
|
@ -45,7 +59,7 @@ If `MAIN_MENU = True`, the order is: Home, `MENUITEMS`, Atom and RSS if availabl
|
||||||
|
|
||||||
The order is Pages and `LINKS`. `LINKS` are shown in a new page.
|
The order is Pages and `LINKS`. `LINKS` are shown in a new page.
|
||||||
|
|
||||||
### How Social menu works?
|
### How social menu works?
|
||||||
|
|
||||||
All icons are provided by [Font Awesome](http://fortawesome.github.io/Font-Awesome/).
|
All icons are provided by [Font Awesome](http://fortawesome.github.io/Font-Awesome/).
|
||||||
|
|
||||||
|
@ -73,13 +87,13 @@ If you need more icons, you will need to add a custom background to keep all ico
|
||||||
|
|
||||||
## Custom File Metadata
|
## Custom File Metadata
|
||||||
|
|
||||||
| Name | What does it do? | Code |
|
| Name | What does it do? |
|
||||||
|:----:|------------------|:----:|
|
|:----:|------------------|
|
||||||
| Summarise | Enable Home summary | `Summarise: True` |
|
| Summarise | Enable Home summary |
|
||||||
|
|
||||||
By default, all article content is shown on Home.
|
By default, all article content is shown on Home.
|
||||||
If the article has a custom Summary, the custom summary is shown.
|
If the article has a custom Summary, the custom summary is shown.
|
||||||
If the article has Summarise metadata, the default article summary is shown.
|
If the article has `Summarise: True` metadata, the default article summary is shown.
|
||||||
|
|
||||||
## Live example
|
## Live example
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue