mirror of
https://github.com/mpusz/mp-units.git
synced 2025-06-25 01:01:33 +02:00
21 lines
589 B
HTML
21 lines
589 B
HTML
{% extends "main.html" %}
|
|
|
|
{% block htmltitle %}
|
|
{% if page.meta and page.meta.title %}
|
|
<title>{{ page.meta.title }}</title>
|
|
{% elif page.title and not page.is_homepage %}
|
|
<title>{{ page.title | striptags }}</title>
|
|
{% else %}
|
|
<title>{{ config.site_name }}</title>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include "partials/api_ref_content.html" %}
|
|
{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
<style>.md-content__button {display:none !important}; </style>
|
|
<style>.md-header__topic {font-weight:700 !important}</style>
|
|
{% endblock %}
|