Use the following include in your markdown:
{% include image-post.html path="PATH_RELATIVE_TO_images" caption="ANY TEXT" %}
Keep in mind that you have to add the path relative to the directory "images"
Use:
{% include youtube-player.html id="EMBEDED_CODE_PROVIDED_BY_YOUTUBE" %}
Note that you does not need to add the full url, just add the code. See the example below:
{% include youtube-player.html id="Q1cmhZs1P54" %}
./scaffold/add_item.sh --target=<TARGET_LIST> --name=<THE_NAME_YOU_WANT> --image=<AN_IMAGE_IN_images/icon/NAME.png>
Example:
./scaffold/add_item_to_list.sh --target=development --name=Arch --image=arch
About the arguments:
- --target: The element with itens in the _layouts. For example, development.html
- --name: The name of the new section
- --image: The name for the new section
The separation of feeds is performed to filter and organize the posts.
The feed.xml file encompasses all posts without filtering any category, that is, it is the general feed of the site.
The feed-freedesktop.xml file filters posts by the "freedesktop" category and creates a feed with only posts that have that category.
To add a post to the freedesktop feed, simply include the "freedesktop" category in the front matter of the post.
Use:
---
layout: post
categories: freedesktop
---