mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Reverted page partials into a single one due to better performance
This commit is contained in:
parent
5948b19db5
commit
b4e0467878
@ -160,9 +160,7 @@
|
|||||||
<div class="md-content" data-md-component="content">
|
<div class="md-content" data-md-component="content">
|
||||||
<article class="md-content__inner md-typeset">
|
<article class="md-content__inner md-typeset">
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% include "partials/page-header.html" %}
|
{% include "partials/content.html" %}
|
||||||
{% include "partials/page.html" %}
|
|
||||||
{% include "partials/page-footer.html" %}
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</article>
|
</article>
|
||||||
</div>
|
</div>
|
||||||
|
18
material/partials/content.html
Normal file
18
material/partials/content.html
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{#-
|
||||||
|
This file was automatically generated - do not edit
|
||||||
|
-#}
|
||||||
|
{% if page.edit_url %}
|
||||||
|
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-content__button md-icon">
|
||||||
|
{% include ".icons/material/pencil.svg" %}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
{% if not "\x3ch1" in page.content %}
|
||||||
|
<h1>{{ page.title | d(config.site_name, true)}}</h1>
|
||||||
|
{% endif %}
|
||||||
|
{{ page.content }}
|
||||||
|
{% if page and page.meta and (
|
||||||
|
page.meta.git_revision_date_localized or
|
||||||
|
page.meta.revision_date
|
||||||
|
) %}
|
||||||
|
{% include "partials/source-file.html" %}
|
||||||
|
{% endif %}
|
@ -1,9 +0,0 @@
|
|||||||
{#-
|
|
||||||
This file was automatically generated - do not edit
|
|
||||||
-#}
|
|
||||||
{% if page and page.meta and (
|
|
||||||
page.meta.git_revision_date_localized or
|
|
||||||
page.meta.revision_date
|
|
||||||
) %}
|
|
||||||
{% include "partials/source-file.html" %}
|
|
||||||
{% endif %}
|
|
@ -1,8 +0,0 @@
|
|||||||
{#-
|
|
||||||
This file was automatically generated - do not edit
|
|
||||||
-#}
|
|
||||||
{% if page.edit_url %}
|
|
||||||
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-content__button md-icon">
|
|
||||||
{% include ".icons/material/pencil.svg" %}
|
|
||||||
</a>
|
|
||||||
{% endif %}
|
|
@ -1,7 +0,0 @@
|
|||||||
{#-
|
|
||||||
This file was automatically generated - do not edit
|
|
||||||
-#}
|
|
||||||
{% if not "\x3ch1" in page.content %}
|
|
||||||
<h1>{{ page.title | d(config.site_name, true)}}</h1>
|
|
||||||
{% endif %}
|
|
||||||
{{ page.content }}
|
|
@ -292,9 +292,7 @@
|
|||||||
<div class="md-content" data-md-component="content">
|
<div class="md-content" data-md-component="content">
|
||||||
<article class="md-content__inner md-typeset">
|
<article class="md-content__inner md-typeset">
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% include "partials/page-header.html" %}
|
{% include "partials/content.html" %}
|
||||||
{% include "partials/page.html" %}
|
|
||||||
{% include "partials/page-footer.html" %}
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</article>
|
</article>
|
||||||
</div>
|
</div>
|
||||||
|
@ -20,6 +20,18 @@
|
|||||||
IN THE SOFTWARE.
|
IN THE SOFTWARE.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
<!-- Edit button -->
|
||||||
|
{% if page.edit_url %}
|
||||||
|
<a
|
||||||
|
href="{{ page.edit_url }}"
|
||||||
|
title="{{ lang.t('edit.link.title') }}"
|
||||||
|
class="md-content__button md-icon"
|
||||||
|
>
|
||||||
|
{% include ".icons/material/pencil.svg" %}
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Hack: check whether the content contains a h1 headline. If it
|
Hack: check whether the content contains a h1 headline. If it
|
||||||
doesn't, the page title (or respectively site name) is used
|
doesn't, the page title (or respectively site name) is used
|
||||||
@ -31,3 +43,11 @@
|
|||||||
|
|
||||||
<!-- Markdown content -->
|
<!-- Markdown content -->
|
||||||
{{ page.content }}
|
{{ page.content }}
|
||||||
|
|
||||||
|
<!-- Source file information -->
|
||||||
|
{% if page and page.meta and (
|
||||||
|
page.meta.git_revision_date_localized or
|
||||||
|
page.meta.revision_date
|
||||||
|
) %}
|
||||||
|
{% include "partials/source-file.html" %}
|
||||||
|
{% endif %}
|
@ -1,29 +0,0 @@
|
|||||||
<!--
|
|
||||||
Copyright (c) 2016-2021 Martin Donath <martin.donath@squidfunk.com>
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to
|
|
||||||
deal in the Software without restriction, including without limitation the
|
|
||||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
||||||
sell copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
||||||
IN THE SOFTWARE.
|
|
||||||
-->
|
|
||||||
|
|
||||||
<!-- Source file information -->
|
|
||||||
{% if page and page.meta and (
|
|
||||||
page.meta.git_revision_date_localized or
|
|
||||||
page.meta.revision_date
|
|
||||||
) %}
|
|
||||||
{% include "partials/source-file.html" %}
|
|
||||||
{% endif %}
|
|
@ -1,32 +0,0 @@
|
|||||||
<!--
|
|
||||||
Copyright (c) 2016-2021 Martin Donath <martin.donath@squidfunk.com>
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to
|
|
||||||
deal in the Software without restriction, including without limitation the
|
|
||||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
||||||
sell copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
||||||
IN THE SOFTWARE.
|
|
||||||
-->
|
|
||||||
|
|
||||||
<!-- Edit button -->
|
|
||||||
{% if page.edit_url %}
|
|
||||||
<a
|
|
||||||
href="{{ page.edit_url }}"
|
|
||||||
title="{{ lang.t('edit.link.title') }}"
|
|
||||||
class="md-content__button md-icon"
|
|
||||||
>
|
|
||||||
{% include ".icons/material/pencil.svg" %}
|
|
||||||
</a>
|
|
||||||
{% endif %}
|
|
Loading…
Reference in New Issue
Block a user