diff options
author | aleylara <ingirtere@gmail.com> | 2021-03-03 20:00:46 +1100 |
---|---|---|
committer | aleylara <ingirtere@gmail.com> | 2021-03-03 20:00:46 +1100 |
commit | 5b194364bd2cf0279c429b8782970b1b1db1a3d3 (patch) | |
tree | 854c456cc66e82b1142d031dc0a540512e171eda | |
parent | 56a0d7a2d37f89a1e9b1362733293294512c9487 (diff) | |
download | pelican-themes-5b194364bd2cf0279c429b8782970b1b1db1a3d3.tar.gz |
Changed SITEURL and code cleanup
-rw-r--r-- | Peli-Kiera/README.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Peli-Kiera/README.md b/Peli-Kiera/README.md index 1e4a47c..13415b1 100644 --- a/Peli-Kiera/README.md +++ b/Peli-Kiera/README.md @@ -32,7 +32,7 @@ PLUGIN_PATHS = ['pelican-plugins'] PLUGINS = ['readtime', 'neighbors'] ``` A sample article header. -```html +```text Title: Simple is better than complex Date: 2018-11-14 Tags: python, jupyter, library @@ -101,7 +101,7 @@ from __future__ import unicode_literals AUTHOR = 'Author' COPYRIGHT = '2019' SITENAME = 'Site-Name' -SITEURL = 'https://my-pelican-blog-address.io' +SITEURL = 'https://www.example.com' SITESUBTITLE = 'Site Subtitle' PATH = 'content' TIMEZONE = 'America/New_York' @@ -157,15 +157,15 @@ The pagination is presented with the current page and 3 neighboring pages on eit Images can be moved on page by adding the tag `#float-right`, `#float-left`, `#mid` and `#full` in your markdown. -```bash -![Title]({static}/images/my_image-600x400.png#float-right "") +```markdown +![Title]({static}/images/my_image-600x400.png#float-right "camera icon") ``` Similarly, the placement can also be applied to html directly by wrapping images in a `<figure class="placement">` tag. ```html <figure class="float-left"> - <img src="path-to/images/my_image-600x400.png" alt=""> + <img src="path-to/images/my_image-600x400.png" alt="camera icon"> </figure> ``` Minimum image width of 600px is recommended. Images scale accordingly on smaller screens. |