fix(_includes/post_pagination.html): Remove trailing newline
This commit is contained in:
parent
bc0c83c0c4
commit
6f5e6f4391
@ -11,6 +11,7 @@
|
||||
- The "if" means the default is never used (#4955)
|
||||
- For pages without a title, show the site title only once (#4959)
|
||||
- Use `documents-collection.html` partial in `home` layout.
|
||||
- Add Bulgarian translation. [#5003](https://github.com/mmistakes/minimal-mistakes/pull/5003)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@ -19,6 +20,7 @@
|
||||
- Fix reset stylesheet overruling `$doc-font-size`. [#4983](https://github.com/mmistakes/minimal-mistakes/issues/4983)
|
||||
- Fix JavaScript null error on home and splash layouts. [#4938](https://github.com/mmistakes/minimal-mistakes/issues/4938), [#4939](https://github.com/mmistakes/minimal-mistakes/pull/4939)
|
||||
- Fix bad <figure> HTML if "alt" contains quotes.
|
||||
- Fix extra newline generated in `_includes/post_pagination.html`.
|
||||
|
||||
### Documentation & Maintenance
|
||||
|
||||
|
@ -1,14 +1,14 @@
|
||||
{% if page.previous or page.next %}
|
||||
<nav class="pagination">
|
||||
{% if page.previous %}
|
||||
<a href="{{ page.previous.url | relative_url }}" class="pagination--pager" title="{{ page.previous.title | markdownify | strip_html }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a>
|
||||
<a href="{{ page.previous.url | relative_url }}" class="pagination--pager" title="{{ page.previous.title | markdownify | strip_html | strip}}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a>
|
||||
{% else %}
|
||||
<a href="#" class="pagination--pager disabled">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a>
|
||||
{% endif %}
|
||||
{% if page.next %}
|
||||
<a href="{{ page.next.url | relative_url }}" class="pagination--pager" title="{{ page.next.title | markdownify | strip_html }}">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a>
|
||||
<a href="{{ page.next.url | relative_url }}" class="pagination--pager" title="{{ page.next.title | markdownify | strip_html | strip}}">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a>
|
||||
{% else %}
|
||||
<a href="#" class="pagination--pager disabled">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a>
|
||||
{% endif %}
|
||||
</nav>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
@ -5,7 +5,7 @@ permalink: "/docs/history/"
|
||||
excerpt: Change log of enhancements and bug fixes made to the theme.
|
||||
sidebar:
|
||||
nav: docs
|
||||
last_modified_at: '2024-10-02T22:57:15+08:00'
|
||||
last_modified_at: '2024-11-11T21:31:17+08:00'
|
||||
toc: false
|
||||
---
|
||||
|
||||
@ -26,6 +26,7 @@ toc: false
|
||||
- The "if" means the default is never used [#4955](https://github.com/mmistakes/minimal-mistakes/issues/4955)
|
||||
- For pages without a title, show the site title only once [#4959](https://github.com/mmistakes/minimal-mistakes/issues/4959)
|
||||
- Use `documents-collection.html` partial in `home` layout.
|
||||
- Add Bulgarian translation. [#5003](https://github.com/mmistakes/minimal-mistakes/pull/5003)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@ -34,6 +35,7 @@ toc: false
|
||||
- Fix reset stylesheet overruling `$doc-font-size`. [#4983](https://github.com/mmistakes/minimal-mistakes/issues/4983)
|
||||
- Fix JavaScript null error on home and splash layouts. [#4938](https://github.com/mmistakes/minimal-mistakes/issues/4938), [#4939](https://github.com/mmistakes/minimal-mistakes/pull/4939)
|
||||
- Fix bad <figure> HTML if "alt" contains quotes.
|
||||
- Fix extra newline generated in `_includes/post_pagination.html`.
|
||||
|
||||
### Documentation & Maintenance
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user