jekyll-theme-adobe-hyde 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +201 -0
- data/README.md +59 -0
- data/_includes/associated_classes.html +4 -0
- data/_includes/associated_enumerations.html +4 -0
- data/_includes/associated_fields.html +24 -0
- data/_includes/associated_functions.html +4 -0
- data/_includes/associated_libraries.html +6 -0
- data/_includes/associated_methods.html +4 -0
- data/_includes/associated_typedefs.html +24 -0
- data/_includes/breadcrumb.html +32 -0
- data/_includes/defined_in_header.html +3 -0
- data/_includes/example_table.html +33 -0
- data/_includes/external_examples.html +32 -0
- data/_includes/figure.md +26 -0
- data/_includes/footer.html +20 -0
- data/_includes/head.html +22 -0
- data/_includes/header.html +26 -0
- data/_includes/icon-github.html +1 -0
- data/_includes/icon-github.svg +1 -0
- data/_includes/icon-twitter.html +1 -0
- data/_includes/icon-twitter.svg +1 -0
- data/_includes/overloads.html +49 -0
- data/_includes/theme.html +81 -0
- data/_includes/top-bar.html +11 -0
- data/_layouts/class.html +49 -0
- data/_layouts/default.html +27 -0
- data/_layouts/directory.html +5 -0
- data/_layouts/eng_index.html +13 -0
- data/_layouts/enumeration.html +35 -0
- data/_layouts/function.html +56 -0
- data/_layouts/library.html +26 -0
- data/_layouts/method.html +5 -0
- data/_layouts/page.html +31 -0
- data/_layouts/post.html +32 -0
- data/_sass/_base.scss +201 -0
- data/_sass/_layout.scss +762 -0
- data/_sass/_main.scss +38 -0
- data/_sass/_syntax-highlighting-base.scss +34 -0
- data/_sass/_syntax-highlighting-dark.scss +71 -0
- data/_sass/_syntax-highlighting-light.scss +71 -0
- data/_sass/_syntax-highlighting.scss +75 -0
- data/_sass/jekyll-theme-adobe-hyde.scss +474 -0
- data/_sass/rouge-github.scss +209 -0
- data/assets/css/main-dark.scss +60 -0
- data/assets/css/main-light.scss +65 -0
- data/assets/images/bg_hr.png +0 -0
- data/assets/images/blacktocat.png +0 -0
- data/assets/images/icon_download.png +0 -0
- data/assets/images/sprite_download.png +0 -0
- data/assets/scripts/indices.js +259 -0
- metadata +149 -0
data/_includes/figure.md
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
<p style='text-align: center;' markdown='1'>
|
2
|
+
|
3
|
+
{% assign figure-number = figure-number | default: 0 | plus: 1 %}
|
4
|
+
{% assign figure-index = figure-number | minus: 1 %}
|
5
|
+
|
6
|
+
{% if page.chapter %}
|
7
|
+
{% assign -figure-decimal = page.chapter | append: '.' | append: figure-number %}
|
8
|
+
{% else %}
|
9
|
+
{% assign -figure-decimal = figure-number %}
|
10
|
+
{% endif %}
|
11
|
+
|
12
|
+
{% assign -figure-ref = '[figure ' | append: -figure-decimal | append: '](#' | append: include.name | append: ')' %}
|
13
|
+
|
14
|
+
{% if figure-reference %}
|
15
|
+
{% assign figure-reference = ((figure-reference | join: '$') | append: '$' | append: -figure-ref) | split: '$' %}
|
16
|
+
{% else %}
|
17
|
+
{% assign figure-reference = -figure-ref | split: '$' %}
|
18
|
+
{% endif %}
|
19
|
+
|
20
|
+
{::comment}Caption is not included in alt-text because it contains markup{:/comment}
|
21
|
+
![figure {{-figure-decimal}}][{{include.name}}]\\
|
22
|
+
|
23
|
+
figure {{-figure-decimal}}: {{include.caption}}
|
24
|
+
</p>{: #{{include.name}} }
|
25
|
+
|
26
|
+
[{{include.name}}]: figures/{{include.name}}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<footer class="site-footer">
|
2
|
+
<div class="wrapper">
|
3
|
+
<h2 class="footer-heading">{{ site.title }} — {{ site.subtitle }}</h2>
|
4
|
+
<table class='footer-table'>
|
5
|
+
<tr>
|
6
|
+
<td class='footer-left'>
|
7
|
+
Page owner(s):
|
8
|
+
{% for o in page.owner %}
|
9
|
+
<a href='https://git.corp.adobe.com/{{o}}'>{{o}}</a>
|
10
|
+
{% endfor %}
|
11
|
+
</td>
|
12
|
+
<td class='footer-center'>
|
13
|
+
</td>
|
14
|
+
<td class='footer-right'>
|
15
|
+
Last updated: {{ site.time }}
|
16
|
+
</td>
|
17
|
+
</tr>
|
18
|
+
</table>
|
19
|
+
</div>
|
20
|
+
</footer>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
<head>
|
2
|
+
<meta charset="utf-8">
|
3
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
5
|
+
|
6
|
+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
|
7
|
+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
|
8
|
+
<noscript>
|
9
|
+
<link rel="stylesheet" href="{{ "assets/css/main-light.css" | prepend: site.baseurl }}">
|
10
|
+
</noscript>
|
11
|
+
<link rel="stylesheet" id="main-style">
|
12
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
13
|
+
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro|Source+Serif+Pro" rel="stylesheet">
|
14
|
+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
|
15
|
+
<script type="text/x-mathjax-config">
|
16
|
+
MathJax.Hub.Config({
|
17
|
+
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
|
18
|
+
});
|
19
|
+
</script>
|
20
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
|
21
|
+
<script src="/assets/scripts/indices.js"></script>
|
22
|
+
</head>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<header class="site-header">
|
2
|
+
|
3
|
+
<div class="wrapper" id="page-top">
|
4
|
+
|
5
|
+
<a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>
|
6
|
+
|
7
|
+
<nav class="site-nav">
|
8
|
+
<!-- #page-top is hack because html proofer doesn't understand # -->
|
9
|
+
<a href="#page-top" class="menu-icon">
|
10
|
+
<svg viewBox="0 0 18 15">
|
11
|
+
<path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
|
12
|
+
<path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
|
13
|
+
<path fill="#424242" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
|
14
|
+
</svg>
|
15
|
+
</a>
|
16
|
+
|
17
|
+
<div class="trigger">
|
18
|
+
<script>
|
19
|
+
document.write(window.hyde_tabs);
|
20
|
+
</script>
|
21
|
+
</div>
|
22
|
+
</nav>
|
23
|
+
|
24
|
+
</div>
|
25
|
+
|
26
|
+
</header>
|
@@ -0,0 +1 @@
|
|
1
|
+
<a href="https://github.com/{{ include.username }}"><span class="icon icon--github">{% include icon-github.svg %}</span><span class="username">{{ include.username }}</span></a>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg viewBox="0 0 16 16"><path fill="#828282" d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<a href="https://twitter.com/{{ include.username }}"><span class="icon icon--twitter">{% include icon-twitter.svg %}</span><span class="username">{{ include.username }}</span></a>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg viewBox="0 0 16 16"><path fill="#828282" d="M15.969,3.058c-0.586,0.26-1.217,0.436-1.878,0.515c0.675-0.405,1.194-1.045,1.438-1.809c-0.632,0.375-1.332,0.647-2.076,0.793c-0.596-0.636-1.446-1.033-2.387-1.033c-1.806,0-3.27,1.464-3.27,3.27 c0,0.256,0.029,0.506,0.085,0.745C5.163,5.404,2.753,4.102,1.14,2.124C0.859,2.607,0.698,3.168,0.698,3.767 c0,1.134,0.577,2.135,1.455,2.722C1.616,6.472,1.112,6.325,0.671,6.08c0,0.014,0,0.027,0,0.041c0,1.584,1.127,2.906,2.623,3.206 C3.02,9.402,2.731,9.442,2.433,9.442c-0.211,0-0.416-0.021-0.615-0.059c0.416,1.299,1.624,2.245,3.055,2.271 c-1.119,0.877-2.529,1.4-4.061,1.4c-0.264,0-0.524-0.015-0.78-0.046c1.447,0.928,3.166,1.469,5.013,1.469 c6.015,0,9.304-4.983,9.304-9.304c0-0.142-0.003-0.283-0.009-0.423C14.976,4.29,15.531,3.714,15.969,3.058z"/></svg>
|
@@ -0,0 +1,49 @@
|
|
1
|
+
{% if page.overloads %}
|
2
|
+
<table class='declaration-table'>
|
3
|
+
{% for entity in page.overloads %}
|
4
|
+
<tr>
|
5
|
+
<td>
|
6
|
+
{% highlight c++ %}{{ entity[1].signature_with_names }}{% endhighlight %}
|
7
|
+
</td>
|
8
|
+
<td>({{ forloop.index }})</td>
|
9
|
+
</tr>
|
10
|
+
{% endfor %}
|
11
|
+
</table>
|
12
|
+
|
13
|
+
{{ page.description | markdownify }}
|
14
|
+
|
15
|
+
<ol>
|
16
|
+
{% for entity in page.overloads %}
|
17
|
+
<li>
|
18
|
+
{% if entity[1].annotation %}
|
19
|
+
<span class='annotation'>({{entity[1].annotation | join: ", "}})</span>
|
20
|
+
{% endif %}
|
21
|
+
{{entity[1].description}}
|
22
|
+
{% if entity[1].arguments or entity[1].return %}
|
23
|
+
<br/>
|
24
|
+
{% endif %}
|
25
|
+
{% if entity[1].arguments %}
|
26
|
+
<b>Parameters:</b>
|
27
|
+
<ul>
|
28
|
+
{% for arg in entity[1].arguments %}
|
29
|
+
<li>
|
30
|
+
<code>{{arg.type | escape}}</code>
|
31
|
+
{% if (arg.name != "") and (arg.unnamed == false) %}
|
32
|
+
<code>{{arg.name | escape}}</code>
|
33
|
+
{% else %}
|
34
|
+
<i>unnamed</i>
|
35
|
+
{% endif %}
|
36
|
+
{% if arg.description and (arg.description != "__OPTIONAL__") %}
|
37
|
+
: {{arg.description | escape}}
|
38
|
+
{% endif %}
|
39
|
+
</li>
|
40
|
+
{% endfor %}
|
41
|
+
</ul>
|
42
|
+
{% endif %}
|
43
|
+
{% if entity[1].return and (entity[1].return != "__OPTIONAL__") %}
|
44
|
+
<b>Returns:</b> {{entity[1].return | escape}}
|
45
|
+
{% endif %}
|
46
|
+
</li>
|
47
|
+
{% endfor %}
|
48
|
+
</ol>
|
49
|
+
{% endif %}
|
@@ -0,0 +1,81 @@
|
|
1
|
+
<div class="theme">
|
2
|
+
<a id="theme-switcher"></a>
|
3
|
+
</div>
|
4
|
+
|
5
|
+
<script type="text/javascript">
|
6
|
+
'use strict';
|
7
|
+
{
|
8
|
+
const key = "theme";
|
9
|
+
const switcher = document.getElementById("theme-switcher");
|
10
|
+
const content = document.getElementById("site-wrapper");
|
11
|
+
|
12
|
+
function theme(name, next) {
|
13
|
+
if (name === "dark") {
|
14
|
+
set("{{ "/assets/css/main-dark.css" | prepend: site.baseurl }}");
|
15
|
+
}
|
16
|
+
else {
|
17
|
+
set("{{ "/assets/css/main-light.css" | prepend: site.baseurl }}");
|
18
|
+
}
|
19
|
+
|
20
|
+
store(name);
|
21
|
+
|
22
|
+
switcher.textContent = "<" + next + ">";
|
23
|
+
}
|
24
|
+
|
25
|
+
function set(url){
|
26
|
+
const id = "main-style";
|
27
|
+
|
28
|
+
// Hide content while changing styles to avoid flashing unstyled content
|
29
|
+
content.style.display = "none";
|
30
|
+
|
31
|
+
let style = document.getElementById(id);
|
32
|
+
const parent = style.parentElement;
|
33
|
+
parent.removeChild(style);
|
34
|
+
style = document.createElement('link');
|
35
|
+
style.type = 'text/css';
|
36
|
+
style.rel = 'stylesheet';
|
37
|
+
style.id = id;
|
38
|
+
style.onload = () => {
|
39
|
+
content.style.display = "initial";
|
40
|
+
};
|
41
|
+
style.href = url;
|
42
|
+
parent.appendChild(style);
|
43
|
+
}
|
44
|
+
|
45
|
+
function store(name){
|
46
|
+
localStorage.setItem(key, name);
|
47
|
+
}
|
48
|
+
|
49
|
+
function load() {
|
50
|
+
let name = localStorage.getItem(key);
|
51
|
+
if (name == 'undefined' || name == undefined) {
|
52
|
+
name = "light";
|
53
|
+
}
|
54
|
+
|
55
|
+
return name;
|
56
|
+
}
|
57
|
+
|
58
|
+
function swap() {
|
59
|
+
const name = load();
|
60
|
+
|
61
|
+
theme(next(name), name);
|
62
|
+
}
|
63
|
+
|
64
|
+
function next(current) {
|
65
|
+
if (current === "light") {
|
66
|
+
return "dark";
|
67
|
+
} else {
|
68
|
+
return "light";
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
// Load saved theme
|
73
|
+
const name = load();
|
74
|
+
theme(name, next(name));
|
75
|
+
|
76
|
+
// Hook up switch handler
|
77
|
+
switcher.onclick = event => {
|
78
|
+
swap();
|
79
|
+
};
|
80
|
+
}
|
81
|
+
</script>
|
data/_layouts/class.html
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
<div class="post">
|
5
|
+
<header class="post-header">
|
6
|
+
<h1 class='code'>{{ page.title | escape }}</h1>
|
7
|
+
</header>
|
8
|
+
|
9
|
+
<article class="post-content">
|
10
|
+
{% include defined_in_header.html %}
|
11
|
+
|
12
|
+
<br/>
|
13
|
+
|
14
|
+
{{page.brief | markdownify}}
|
15
|
+
|
16
|
+
{% if page.declaration.first != empty %}
|
17
|
+
<table class='declaration-table'>
|
18
|
+
{% for item in page.declaration %}
|
19
|
+
<tr>
|
20
|
+
<td>
|
21
|
+
{% highlight cpp %}{{ item }}{% endhighlight %}
|
22
|
+
</td>
|
23
|
+
</tr>
|
24
|
+
{% endfor %}
|
25
|
+
</table>
|
26
|
+
{% else %}
|
27
|
+
{% highlight c++ %}{{ page.declaration }}{% endhighlight %}
|
28
|
+
{% endif %}
|
29
|
+
|
30
|
+
{{page.description | markdownify}}
|
31
|
+
|
32
|
+
{% include associated_enumerations.html %}
|
33
|
+
|
34
|
+
{% include associated_typedefs.html %}
|
35
|
+
|
36
|
+
{% include associated_fields.html %}
|
37
|
+
|
38
|
+
{% include associated_methods.html %}
|
39
|
+
|
40
|
+
{% include associated_functions.html %}
|
41
|
+
|
42
|
+
{% include associated_classes.html %}
|
43
|
+
|
44
|
+
{{ content }}
|
45
|
+
|
46
|
+
{% include external_examples.html name=page.example header="Example" %}
|
47
|
+
</article>
|
48
|
+
</div>
|
49
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
|
4
|
+
{% include head.html %}
|
5
|
+
|
6
|
+
<body>
|
7
|
+
<noscript>
|
8
|
+
<style>#site-wrapper { display: initial !important}</style>
|
9
|
+
</noscript>
|
10
|
+
<div id="site-wrapper" style="display: none">
|
11
|
+
<div class="main-content">
|
12
|
+
{% include header.html %}
|
13
|
+
|
14
|
+
{% include top-bar.html %}
|
15
|
+
|
16
|
+
<div class="page-content">
|
17
|
+
<div class="wrapper">
|
18
|
+
{{ content }}
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
|
23
|
+
{% include footer.html %}
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
|
27
|
+
</html>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
{{content}}
|
6
|
+
|
7
|
+
<table class='directory-table'>
|
8
|
+
<script>
|
9
|
+
var page_index = window.hyde_index["{{ page.dir }}"];
|
10
|
+
if ('eng_index' in page_index) document.write(page_index.eng_index);
|
11
|
+
if ('page' in page_index) document.write(page_index.page);
|
12
|
+
</script>
|
13
|
+
</table>
|
@@ -0,0 +1,35 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
<div class="post">
|
5
|
+
<header class="post-header">
|
6
|
+
<h1 class='code'>{{ page.title | escape }}</h1>
|
7
|
+
</header>
|
8
|
+
|
9
|
+
<article class="post-content">
|
10
|
+
{{page.description}}
|
11
|
+
|
12
|
+
{% include defined_in_header.html %}
|
13
|
+
|
14
|
+
{% highlight c++ %}{{ page.declaration }}{% endhighlight %}
|
15
|
+
|
16
|
+
{{page.brief | markdownify}}
|
17
|
+
|
18
|
+
{{page.description | markdownify}}
|
19
|
+
|
20
|
+
<h2>Values</h2>
|
21
|
+
|
22
|
+
<table class='definition-table'>
|
23
|
+
{% for value in page.values %}
|
24
|
+
<tr>
|
25
|
+
<td class='decl'>{{ value.name }}</td>
|
26
|
+
<td class='defn'>{{ value.description | markdownify }}</td>
|
27
|
+
</tr>
|
28
|
+
{% endfor %}
|
29
|
+
</table>
|
30
|
+
|
31
|
+
{{ content }}
|
32
|
+
|
33
|
+
{% include external_examples.html name=page.example header="Example" %}
|
34
|
+
</article>
|
35
|
+
</div>
|
@@ -0,0 +1,56 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
<div class="post">
|
5
|
+
<header class="post-header">
|
6
|
+
<h1 class='code'>{{ page.title | escape }}</h1>
|
7
|
+
</header>
|
8
|
+
|
9
|
+
<article class="post-content">
|
10
|
+
{% include defined_in_header.html %}
|
11
|
+
|
12
|
+
<br/>
|
13
|
+
|
14
|
+
{{page.brief | markdownify}}
|
15
|
+
|
16
|
+
<br/>
|
17
|
+
|
18
|
+
{% include overloads.html %}
|
19
|
+
|
20
|
+
{% for entity in page.entities %}
|
21
|
+
{% case entity.kind %}
|
22
|
+
{% when 'parameters'%}
|
23
|
+
<h3>Parameters</h3>
|
24
|
+
{% if entity.list %}
|
25
|
+
<table class='parameter-table'>
|
26
|
+
{% for item in entity.list %}
|
27
|
+
<tr>
|
28
|
+
<td class='decl'>{{ item.name }}</td>
|
29
|
+
<td class='defn'>
|
30
|
+
{% if item.annotation %}
|
31
|
+
<span class='annotation'>({{item.annotation | join: ", "}})</span>
|
32
|
+
{% endif %}
|
33
|
+
{{ item.description | markdownify }}
|
34
|
+
</td>
|
35
|
+
</tr>
|
36
|
+
{% endfor %}
|
37
|
+
</table>
|
38
|
+
{% else %}
|
39
|
+
<p>(none)</p>
|
40
|
+
{% endif %}
|
41
|
+
{% when 'result'%}
|
42
|
+
<h3>Return value</h3>
|
43
|
+
{% if entity.description %}
|
44
|
+
{{ entity.description | markdownify }}
|
45
|
+
{% else %}
|
46
|
+
<p>(none)</p>
|
47
|
+
{% endif %}
|
48
|
+
{% else %}
|
49
|
+
{% endcase %}
|
50
|
+
{% endfor %}
|
51
|
+
|
52
|
+
{{ content }}
|
53
|
+
|
54
|
+
{% include external_examples.html name=page.example header="Example" %}
|
55
|
+
</article>
|
56
|
+
</div>
|