forked from textpattern/textpattern.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocument.html
More file actions
63 lines (52 loc) · 2.62 KB
/
document.html
File metadata and controls
63 lines (52 loc) · 2.62 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
62
63
<!DOCTYPE html>
<html lang="en-GB-oxendict">
<head>
<meta charset="utf-8">
<title>{{ page.title }} / Textpattern CMS user documentation</title>
{% include head.html %}
<meta name="robots" content="index, follow, noodp, noydir">
<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.io/apple-touch-icon-180x180.png">
<meta name="twitter:url" content="https://docs.textpattern.io{{ page.url }}">
<meta property="og:image" content="https://textpattern.io/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.io/"><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="item"><span itemprop="name">{{ page.title }}</span></b>
<meta itemprop="position" content="3">
</li>
</ol>
</nav>
<article>
{{ 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="{{ tag | slugify }}" title="View documentation in this category">{{ tag }}</a>
{% endfor %}
</footer>
{% endif %}
</article>
{% include ads-article.html %}
<p class="alert-block information footnote report-issues">See something wrong in this document? Outdated info, a broken link, faulty code example, or whatever? Please <a rel="external" href="https://github.com/textpattern/textpattern.github.io/issues">write an issue</a> and we’ll fix it.</p>
</div>
{% include footer.html %}
</body>
</html>