-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdocument.html
More file actions
61 lines (51 loc) · 2.94 KB
/
document.html
File metadata and controls
61 lines (51 loc) · 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en-GB-oxendict">
<head>
{% include head.html %}
<title>{{ page.title }} / Textpattern CMS user documentation</title>
<meta name="robots" content="index, follow">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@textpattern">
<meta name="twitter:title" content="{{ page.title }}">
<meta name="twitter:description" content="{{ page.description }}">
<meta name="twitter:image:src" content="https://docs.textpattern.com/apple-touch-icon-180x180.png">
<meta name="twitter:url" content="https://docs.textpattern.com{{ page.url }}">
<meta property="og:image" content="https://textpattern.com/assets/img/branding/textpattern/textpattern-og.png">
{% seo title=false %}
</head>
<body itemscope itemtype="https://schema.org/WebPage">
{% include header.html %}
<div class="container">
<nav aria-label="Breadcrumb navigation">
<ol class="breadcrumbs" itemscope itemtype="https://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="https://docs.textpattern.com/"><span itemprop="name">Documentation</span></a>
<meta itemprop="position" content="1">
</li>
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="index"><span itemprop="name">{{ page.category }}</span></a>
<meta itemprop="position" content="2">
</li>
<li class="current" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<b itemprop="name" aria-current="location">{{ page.title }}</b>
<meta itemprop="item" content="https://docs.textpattern.com{{ page.url }}">
<meta itemprop="position" content="3">
</li>
</ol>
</nav>
<article class="article--with-toc">
{{ content }}
{% if page.tags %}
<footer class="article-footer">
<span class="ui-icon ui-icon-tag">Tags:</span>
{% for tag in page.tags %}
<a rel="category tag" href="types/{{ tag | slugify }}" title="View documentation in this category">{{ tag }}</a>
{% endfor %}
</footer>
{% endif %}
</article>
<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>
</div>
{% include footer.html %}
</body>
</html>