{% extends "base.html" %} {% block styles%} {% endblock styles %} {% block posthead %} {% set profile_image = resize_image(path=config.extra.profile_large, width=280, height=373, op="fill") %} {% if config.extra.latest_text %} {% set blog_path = "blog" %} {% if config.extra.blog_path %} {% set_global blog_path = config.extra.blog_path %} {% endif %} {% set blogs = get_section(path=blog_path ~ "/_index.md") %} {% set latest = blogs.pages.0 %} {% if latest %} {% endif %} {% endif %} {% endblock posthead %} {% block content %} {% set profile_image = resize_image(path=config.extra.profile_large, width=280, height=373, op="fill") %}
profile picture
{{ section.content | safe }} {% if config.extra.latest_text %} {% set blog_path = "blog" %} {% if config.extra.blog_path %} {% set_global blog_path = config.extra.blog_path %} {% endif %} {% set blogs = get_section(path=blog_path ~ "/_index.md") %} {% set latest = blogs.pages.0 %}
{% if latest %} {{ config.extra.latest_text }} "{{ latest.title }}" {% endif %}
{% endif %}
{% endblock content %}