A fork of hyde, the static site generation. Some patches will be pushed upstream.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

45 lines
1.3 KiB

  1. ---
  2. index: 1
  3. title_ending: "| Advanced topics"
  4. tags:
  5. - sort
  6. - group
  7. - tag
  8. learning_order: 4
  9. ---
  10. More advanced topics
  11. ====================
  12. If you have read and understood all basic topics covered in
  13. {% for res in site.content.walk_resources_grouped_by_basic()|reverse %}
  14. [{{ res.slug|capitalize|replace("-"," ") }}]({{ res.full_url }})
  15. {% endfor %}
  16. then you are ready for some more advanced features. They are explained in
  17. the same way as the basic part, building on the knowledge of the previous,
  18. so it is recommended that you follow them in the listed order.
  19. {# List all resources from a group, sort them by index and list their tags. #}
  20. {% for res in resource.node.walk_resources_sorted_by_learning_order() %}
  21. {{ loop.index }}. \
  22. [{{ res.slug|capitalize|replace("-"," ") }}]({{ res.full_url }}) \
  23. {% if res.name == "overview.html" %}*(this file)*{% endif %} \
  24. {#
  25. Sometimes you'll have to add HTML tags to a Markdown file for styling
  26. or adding some special features, and Markdown is OK with that.
  27. #}
  28. <span class="tags">tags:
  29. {% for tag in res.meta.tags %}
  30. {#
  31. After wring the tag name, check if that is the last tag in the list. If
  32. it is, don't append the comma at the end.
  33. #}
  34. {{ tag }}{% if tag != res.meta.tags[-1] %},{% endif %}
  35. {% endfor %}
  36. </span>
  37. {% endfor %}
  38. {{ macros.render_bottom_article_nav() }}