b9296f7985
* Make {section, page}.path always start with a slash Change tests accordingly * Fix missing leading/trailing slash in current_path of Taxonomy ("tags") and TaxonomyItem ("some-tag") * Make {Paginator, Pager}.path always start with a slash Fix Paginator.path missing trailing slash in from_taxonomy() Change tests accordingly * Update documentation regarding current_path now always starting with a slash * Fix asymptomatic inverted logic in filter() for {section, page}.assets * Add to 3 integration tests several checks for current_path in different templates * Add a check for current_path in a paginated index section, "/page/2/" This requires adding two dummy pages in the content root. * Fix false passing of test on paginator.last due to URL prefix matching A string formatting such as {name: value} can help prevent this.
37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="{{ config.description }}">
|
|
<meta name="author" content="{{ config.extra.author.name }}">
|
|
<link href="https://fonts.googleapis.com/css?family=Fira+Mono|Fira+Sans|Merriweather" rel="stylesheet">
|
|
<link href="{{ config.base_url }}/site.css" rel="stylesheet">
|
|
<title>{{ config.title }}</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="content">
|
|
{% block content %}
|
|
<div class="list-posts">
|
|
{% for page in paginator.pages %}
|
|
<article>
|
|
<h3 class="post__title"><a href="{{ page.permalink }}">{{ page.title }}</a></h3>
|
|
</article>
|
|
{% endfor %}
|
|
{% if paginator.previous %}has_prev{% endif %}
|
|
{% if paginator.next %}has_next{% endif %}
|
|
Num pages: {{ paginator.number_pagers }}
|
|
Current index: {{ paginator.current_index }}
|
|
First: {{ paginator.first | safe }}
|
|
Last: {{ paginator.last | safe }}
|
|
</div>
|
|
{% endblock content %}
|
|
</div>
|
|
|
|
{% include "current_path.html" %}
|
|
|
|
</body>
|
|
</html>
|