diff --git a/content/documentation/_index.md b/content/documentation/_index.md index 97072e9..1752816 100644 --- a/content/documentation/_index.md +++ b/content/documentation/_index.md @@ -4,4 +4,16 @@ insert_anchor_links = "right" paginate_by = 5 +++ -Documentation +# Documentation + +Welcome to the Phel documentation. Here you'll find comprehensive guides and references for using Phel. + +
+

Notice: You will be automatically redirected to the Getting Started guide in a few seconds.

+
+ + diff --git a/templates/section.html b/templates/section.html new file mode 100644 index 0000000..d5fb0da --- /dev/null +++ b/templates/section.html @@ -0,0 +1,26 @@ +{% extends "base.html" %} + +{% block body %} +{% include "header.html" %} + +
+ {% block content %} +
+ {{ section.content | safe }} + + {% if section.pages %} + + {% endif %} +
+ {% endblock %} + + {% include "footer.html" %} +
+ +{% endblock body %}