{% extends "base.html" %} {%- block content -%}
{% if section.content %}
{{ section.content | safe }}
{% endif %}

articles ⇢

{%- set blog = get_section(path="blog/_index.md") -%} {%- set post_count = blog.pages | length -%} {%- for post in blog.pages %}

{{- post.title -}}

{%- endfor %}

notes ⇢

{%- set notes = get_section(path="notes/_index.md") -%} {%- set post_count = notes.pages | length -%} {%- for post in notes.pages %}

{{- post.title -}}

{%- endfor %}

contact

Email: franck@fcuny.net
{%- endblock content -%}