{% import "macros/date.html" as date_macros -%} {% import "macros/head.html" as head_macros -%} {% import "macros/menu.html" as menu_macros -%} {% import "macros/post.html" as post_macros -%} {% import "macros/title.html" as title_macros -%} {%- block title %}{{ config.title }}{% endblock title -%} {{ head_macros::head(config=config) }} {%- block open_graph %}{{ head_macros::open_graph(config=config) }}{% endblock open_graph -%} {%- if config.generate_feeds %} {%- for feed in config.feed_filenames %} {%- if feed is containing('atom') %} {%- endif %} {%- if feed is containing('rss') %} {%- endif %} {%- endfor %} {%- endif -%} {%- if config.extra.favicon %} {% endif -%} {%- block extra_head %} {% endblock extra_head -%}
{% block header %}
{% block header_menu %} {{ menu_macros::menu(config=config, current_path=current_path) }} {% endblock header_menu %}
{% endblock header %}
{% block content %}

Open Source Contributions and Projects

Recent Blog Posts

{% set blog_section = get_section(path="blog/_index.md") %} {% for page in blog_section.pages | slice(end=10) %}
{{ post_macros::header(page=page) }} {{ post_macros::content(page=page, summary=true, show_only_description=page.extra.show_only_description | default(value=true)) }}
{% endfor %} View All Posts →
{% endblock content %}
{% block footer %} {% endblock footer %}
{%- block extra_body %} {% endblock extra_body -%}