Skip to content

Commit 5884aed

Browse files
committed
No TOC on this article
Fixes #214
1 parent 55df781 commit 5884aed

File tree

2 files changed

+62
-1
lines changed

2 files changed

+62
-1
lines changed
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<!DOCTYPE html>
2+
<html lang="en-GB-oxendict">
3+
<head>
4+
{% include head.html %}
5+
<title>{{ page.title }} / Textpattern CMS user documentation</title>
6+
<meta name="robots" content="index, follow">
7+
<meta name="twitter:card" content="summary">
8+
<meta name="twitter:site" content="@textpattern">
9+
<meta name="twitter:title" content="{{ page.title }}">
10+
<meta name="twitter:description" content="{{ page.description }}">
11+
<meta name="twitter:image:src" content="https://docs.textpattern.com/apple-touch-icon-180x180.png">
12+
<meta name="twitter:url" content="https://docs.textpattern.com{{ page.url }}">
13+
<meta property="og:image" content="https://textpattern.com/assets/img/branding/textpattern/textpattern-og.png">
14+
{% seo title=false %}
15+
</head>
16+
17+
<body itemscope itemtype="https://schema.org/WebPage">
18+
19+
{% include header.html %}
20+
21+
<div class="container">
22+
<nav aria-label="Breadcrumb navigation">
23+
<ol class="breadcrumbs" itemscope itemtype="https://schema.org/BreadcrumbList">
24+
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
25+
<a itemprop="item" href="https://docs.textpattern.com/"><span itemprop="name">Documentation</span></a>
26+
<meta itemprop="position" content="1">
27+
</li>
28+
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
29+
<a itemprop="item" href="index"><span itemprop="name">{{ page.category }}</span></a>
30+
<meta itemprop="position" content="2">
31+
</li>
32+
<li class="current" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
33+
<b itemprop="name" aria-current="location">{{ page.title }}</b>
34+
<meta itemprop="item" content="https://docs.textpattern.com{{ page.url }}">
35+
<meta itemprop="position" content="3">
36+
</li>
37+
</ol>
38+
</nav>
39+
40+
<article>
41+
42+
{{ content }}
43+
44+
{% if page.tags %}
45+
<footer class="article-footer">
46+
<span class="ui-icon ui-icon-tag">Tags:</span>
47+
{% for tag in page.tags %}
48+
<a rel="category tag" href="types/{{ tag | slugify }}" title="View documentation in this category">{{ tag }}</a>
49+
{% endfor %}
50+
</footer>
51+
{% endif %}
52+
53+
</article>
54+
55+
<p class="alert-block information footnote report-issues">If you notice any kind of problem with this page's construction or content (outdated information, typos, broken links, or whatever), <a rel="external" target="_blank" href="https://github.com/textpattern/textpattern.github.io/issues/new?assignees=&labels=&template=discuss-existing-page.md&title=page%3A+{{ page.url }}">open an issue</a> to have it sorted. Or <a rel="external" target="_blank" href="https://github.com/textpattern/textpattern.github.io/blob/master/README.md">have a go at it</a> yourself. :)</p>
56+
</div>
57+
58+
{% include footer.html %}
59+
60+
</body>
61+
</html>

tags/tag-attributes-cross-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: document
2+
layout: document--without-toc
33
category: Tags
44
published: true
55
title: Tag attributes cross-reference

0 commit comments

Comments
 (0)