jursdocs 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8a9872e090c3fe362facd85eb25fddc231aa00d7
4
- data.tar.gz: d5cd19e14925ef7ab55cbf8ed5d437d8a20e7967
3
+ metadata.gz: 2bb71b6ef823ac95bb764070e74f598c2cb4b1b0
4
+ data.tar.gz: 815ed8dae8165275c9a3d267ef6af2ddf5b3df6e
5
5
  SHA512:
6
- metadata.gz: 99eb5bb303d1aa105536418e7ab7e74a8aee3c47f233d151677ddbc28510616cb8408a2f0cfd3bcfd683d8416276b11ea89bb84f63819422f285fdb371526fa3
7
- data.tar.gz: 03b7b5632b315f488c14d81a6805686dc498f6c00213dd42d30f795461d398b62932f75e2615a3836c2fbe6b76a6f2a0eae70fd37ae31f646879bda31baf099e
6
+ metadata.gz: 93cdc008002b34c6db282c9145bfb5db800a275313164cb0e8f056138aa4866aec3201ea7d9c11de9548d6091f5ae0c5f8a9e109860ad9bdd064a35e71d26b2a
7
+ data.tar.gz: 99f4a6530c72693d56ce4d2515cfc96756b178dada89f041cbf0718320175cf8439743c6322e4135da0703c5f9a292c522a57498dd1a6611619046679f0d4193
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Parker Moore
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,90 @@
1
+ # minima
2
+
3
+ *Minima is a one-size-fits-all Jekyll theme for writers*. It's Jekyll's default (and first) theme. It's what you get when you run `jekyll new`.
4
+
5
+ ![minima theme preview](/screenshot.png)
6
+
7
+ ## Installation
8
+
9
+ Add this line to your Jekyll site's Gemfile:
10
+
11
+ ```ruby
12
+ gem "minima"
13
+ ```
14
+
15
+ And add this line to your Jekyll site:
16
+
17
+ ```yaml
18
+ theme: minima
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+
26
+ ## Usage
27
+
28
+ ### Customization
29
+
30
+ To override the default structure and style of minima, simply create the concerned directory at the root of your site, copy the file you wish to customize to that directory, and then edit the file.
31
+ e.g., to override the [`_includes/head.html `](_includes/head.html) file to specify a custom style path, create an `_includes` directory, copy `_includes/head.html` from minima gem folder to `<yoursite>/_includes` and start editing that file.
32
+
33
+ The site's default CSS has now moved to a new place within the gem itself, [`assets/main.scss`](assets/main.scss). To **override the default CSS**, the file has to exist at your site source. Do either of the following:
34
+ - Create a new instance of `main.scss` at site source.
35
+ - Create a new file `main.scss` at `<your-site>/assets/`
36
+ - Add the frontmatter dashes, and
37
+ - Add `@import "minima";`, to `<your-site>/assets/main.scss`
38
+ - Add your custom CSS.
39
+ - Download the file from this repo
40
+ - Create a new file `main.scss` at `<your-site>/assets/`
41
+ - Copy the contents at [assets/main.scss](assets/main.scss) onto the `main.scss` you just created, and edit away!
42
+ - Copy directly from Minima 2.0 gem
43
+ - Go to your local minima gem installation directory ( run `bundle show minima` to get the path to it ).
44
+ - Copy the `assets/` folder from there into the root of `<your-site>`
45
+ - Change whatever values you want, inside `<your-site>/assets/main.scss`
46
+
47
+ --
48
+
49
+ ### Enabling comments (via Disqus)
50
+
51
+ Optionally, if you have a Disqus account, you can tell Jekyll to use it to show a comments section below each post.
52
+
53
+ To enable it, add the following lines to your Jekyll site:
54
+
55
+ ```yaml
56
+ disqus:
57
+ shortname: my_disqus_shortname
58
+ ```
59
+
60
+ You can find out more about Disqus' shortnames [here](https://help.disqus.com/customer/portal/articles/466208).
61
+
62
+ Comments are enabled by default and will only appear in production, i.e., `JEKYLL_ENV=production`
63
+
64
+ If you don't want to display comments for a particular post you can disable them by adding `comments: false` to that post's YAML Front Matter.
65
+
66
+ --
67
+
68
+ ### Enabling Google Analytics
69
+
70
+ To enable Google Anaytics, add the following lines to your Jekyll site:
71
+
72
+ ```yaml
73
+ google_analytics: UA-NNNNNNNN-N
74
+ ```
75
+
76
+ Google Analytics will only appear in production, i.e., `JEKYLL_ENV=production`
77
+
78
+ ## Contributing
79
+
80
+ Bug reports and pull requests are welcome on GitHub at https://github.com/jekyll/minima. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
81
+
82
+ ## Development
83
+
84
+ To set up your environment to develop this theme, run `bundle install`.
85
+
86
+ To test your theme, run `bundle exec rake preview` and open your browser at `http://localhost:4000/minima/`. This starts a Jekyll server using your theme and the contents of the `example/` directory. As you make modifications to your theme and to the example site, your site will regenerate and you should see the changes in the browser after a refresh.
87
+
88
+ ## License
89
+
90
+ The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1,20 @@
1
+ {% if page.comments != false and jekyll.environment == "production" %}
2
+
3
+ <div id="disqus_thread"></div>
4
+ <script>
5
+ var disqus_config = function () {
6
+ this.page.url = '{{ page.url | absolute_url }}';
7
+ this.page.identifier = '{{ page.url | absolute_url }}';
8
+ };
9
+
10
+ (function() {
11
+ var d = document, s = d.createElement('script');
12
+
13
+ s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
14
+
15
+ s.setAttribute('data-timestamp', +new Date());
16
+ (d.head || d.body).appendChild(s);
17
+ })();
18
+ </script>
19
+ <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
20
+ {% endif %}
@@ -0,0 +1,63 @@
1
+ <footer class="site-footer">
2
+
3
+ <div class="wrapper">
4
+
5
+ <h2 class="footer-heading">{{ site.title | escape }}</h2>
6
+
7
+ <div class="footer-col-wrapper">
8
+ <div class="footer-col footer-col-1">
9
+ <ul class="contact-list">
10
+ {% if site.email %}
11
+ <li></li>
12
+ {% endif %}
13
+ </ul>
14
+ </div>
15
+
16
+ <div class="footer-col footer-col-2">
17
+ <ul class="social-media-list">
18
+ {% if site.github_username %}
19
+ <li>
20
+ {% include icon-github.html username=site.github_username %}
21
+ </li>
22
+ {% endif %}
23
+
24
+ {% if site.facebook_page %}
25
+ <li>
26
+ {% include icon-facebook.html username=site.facebook_page %}
27
+ </li>
28
+ {% endif %}
29
+
30
+ {% if site.twitter_username %}
31
+ <li>
32
+ {% include icon-twitter.html username=site.twitter_username %}
33
+ </li>
34
+ {% endif %}
35
+ </ul>
36
+ </div>
37
+
38
+ <div class="footer-col footer-col-3">
39
+ <h3 class="description_header">{{ site.description_header | escape }}</h3>
40
+ <p>{{ site.description | escape }}</p>
41
+ </div>
42
+ </div>
43
+
44
+ </div>
45
+
46
+ </footer>
47
+
48
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
49
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.pack.js" integrity="sha256-vFC/ScvnnuSbTui1byb/SHe8SUXBbyYLFIG6I1XJY0c=" crossorigin="anonymous"></script>
50
+
51
+ <script type="text/javascript">
52
+ $( ".main-content img" ).each(function( index ) {
53
+ $this = $(this);
54
+ $source = $this.attr('src');
55
+
56
+ $this.wrap(function() {
57
+ return "<a href='" + $source + "'>" + $this.html() + "</a>";
58
+ });
59
+
60
+ });
61
+
62
+ $("a[href$='.jpg'],a[href$='.png'],a[href$='.gif']").attr('rel', 'gallery').fancybox();
63
+ </script>
@@ -0,0 +1,10 @@
1
+ <script>
2
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
3
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
4
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
5
+ })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
6
+
7
+ ga('create', '{{ site.google_analytics }}', 'auto');
8
+ ga('send', 'pageview');
9
+
10
+ </script>
@@ -0,0 +1,19 @@
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 | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
7
+ <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
8
+
9
+ <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
10
+ <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
11
+ <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
12
+
13
+ <link href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900,900i" rel="stylesheet">
14
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.css" integrity="sha256-al7Uu0uyKADF89cFejXL3Yu0lobY3xGahFISKqe0C4A=" crossorigin="anonymous" />
15
+
16
+ {% if jekyll.environment == 'production' and site.google_analytics %}
17
+ {% include google-analytics.html %}
18
+ {% endif %}
19
+ </head>
@@ -0,0 +1,54 @@
1
+ <header class="page-header">
2
+
3
+ <div class="main-header">
4
+ {% if site.brand == 'lpo' %}
5
+ <div class="logo lpo">
6
+ <img src="http://lpo.dk.linux19.curanetserver.dk/wp-content/uploads/2016/08/green-white-green-1.png" alt="">
7
+ </div>
8
+ {% else %}
9
+ <div class="logo">
10
+ <a class="site-title" href="{{ "/" | relative_url}}"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%" viewBox="0 0 484 100" version="1.1" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><g id="full_logo"><g id="inite"><rect x="0" y="0" width="20.446" height="100" style="fill:#fff;"/><path d="M35.275,0l20.317,0l62.424,32.63l0,-32.63l20.316,0l0,100l-20.316,0l0,-45.873l-62.424,-32.437l0,78.31l-20.317,0l0,-100l0,0Z" style="fill:#fff;fill-rule:nonzero;"/><rect x="260.568" y="0" width="20.446" height="71.648" style="fill:#fff;"/><path d="M328.345,17.787l-36.98,0l0,-17.787l94.243,0l0,17.787l-36.946,0l0,53.861l-20.317,0l0,-53.861l0,0Z" style="fill:#fff;fill-rule:nonzero;"/><path d="M396.37,0l85.304,0l0,17.787l-64.988,0l0,19.961l57.553,0l0,16.7l-57.553,0l0,27.83l66.333,0l0,17.722l-86.649,0l0,-100l0,0Z" style="fill:#fff;fill-rule:nonzero;"/></g><g id="teh_z"><path d="M146.304,100l65.115,-82.724l-60.181,0l0,-17.276l97.994,0l-66.076,82.726l202.452,0l0,17.274l-239.304,0Z" style="fill:#ce2922;fill-rule:nonzero;"/></g></g></svg></a>
11
+ </div>
12
+ {% endif %}
13
+ <nav class="header-nav">
14
+ <ul>
15
+ <li><a href="/">Hjem</a></li>
16
+ <li><a href="/docs/">Artikler</a></li>
17
+ {% for page in site.pages %}
18
+ {% if page.permalink contains 'docs' %}
19
+
20
+ {% elsif page.url contains '.xml' %}
21
+ {% elsif page.url contains '.css' %}
22
+ {% elsif page.url == "/" %}
23
+ {% elsif page.url == "/kontakt/" %}
24
+
25
+ {% else %}
26
+ <li><a href="{{ page.url }}">{{ page.title }}</a></li>
27
+ {% endif %}
28
+
29
+ {% endfor %}
30
+ <li><a href="/kontakt/">Kontakt</a></li>
31
+ </ul>
32
+ </nav>
33
+ </div>
34
+
35
+ <div class="page-subheader">
36
+ <div class="page-title">
37
+ <span>Documentation</span>
38
+ </div>
39
+
40
+ <nav class="breadcrumbs" role="menubar" aria-label="breadcrumbs">
41
+ <a href="{{ site.url }}{{ site.baseurl }}">{{ site.data.language.breadcrumb_start }}</a>
42
+ {% assign crumbs = page.url | split: '/' %}
43
+ {% for crumb in crumbs offset: 1 %}
44
+ {% if forloop.last %}
45
+ <a class="current">{{ page.title }}</a>
46
+ {% else %}
47
+ <a href="{{ site.url }}{{ site.baseurl }}{% assign crumb_limit = forloop.index | plus: 1 %}{% for crumb in crumbs limit: crumb_limit %}{{ crumb | append: '/' }}{% endfor %}">{{ crumb | replace:'-',' ' }}</a> &rarr;
48
+ {% endif %}
49
+ {% endfor %}
50
+ </nav>
51
+
52
+ </div>
53
+
54
+ </header>
@@ -0,0 +1 @@
1
+ <a href="{{ include.username }}"><span class="icon icon--facebook">{% include icon-facebook.svg %}</span><span class="username">{{ include.username }}</span></a>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 16 16" width="16px" height="16px"><path d="M14.198,1.032c0.211,0 0.393,0.076 0.544,0.227c0.151,0.151 0.227,0.333 0.227,0.544l0,12.395c0,0.211 -0.076,0.393 -0.227,0.544c-0.151,0.151 -0.333,0.227 -0.544,0.227l-3.548,0l0,-5.399l1.806,0l0.272,-2.105l-2.078,0l0,-1.343c0,-0.338 0.071,-0.593 0.213,-0.762c0.142,-0.169 0.419,-0.254 0.83,-0.254l1.107,-0.009l0,-1.878c-0.381,-0.055 -0.919,-0.082 -1.615,-0.082c-0.822,0 -1.48,0.242 -1.973,0.726c-0.493,0.484 -0.74,1.167 -0.74,2.051l0,1.551l-1.814,0l0,2.105l1.814,0l0,5.399l-6.669,0c-0.211,0 -0.393,-0.076 -0.544,-0.227c-0.151,-0.151 -0.227,-0.333 -0.227,-0.544l0,-12.395c0,-0.211 0.076,-0.393 0.227,-0.544c0.151,-0.151 0.333,-0.227 0.544,-0.227l12.395,0Z" style="fill:#828282;fill-rule:nonzero;"/></svg>
@@ -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" width="16px" height="16px"><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" width="16px" height="16px"><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,24 @@
1
+ {% capture html %}
2
+ <ul>
3
+ {% if include.context == "/" %}
4
+ <li class="{% if page.url == "/" %}active{% endif %}">
5
+ <a href="{{ site.baseurl }}/">{{ site.title }}</a>
6
+ </li>
7
+ {% endif %}
8
+
9
+ {% assign entries = site.pages | sort: "path" %}
10
+ {% for entry in entries %}
11
+
12
+ {% capture slug %}{{ entry.url | split: "/" | last }}{% endcapture %}
13
+ {% capture current %}{{ entry.url | remove: slug | remove: "//" | append: "/" }}{% endcapture %}
14
+
15
+ {% if current == include.context %}
16
+ <li class="{% if page.url contains entry.url %}active{% endif %}">
17
+ <a href="{{ site.baseurl }}{{ entry.url }}">{{ entry.title }}</a>
18
+ {% include sitemap.html context=entry.url %}
19
+ </li>
20
+ {% endif %}
21
+
22
+ {% endfor %}
23
+ </ul>
24
+ {% endcapture %}{{ html | strip_newlines | replace:' ','' | replace:' ','' | replace:' ',' ' }}
@@ -0,0 +1,14 @@
1
+ {% assign cur_page_permalink = page.permalink %}
2
+ {% assign pages = site.pages | sort:"title" %}
3
+
4
+ <ul>
5
+ {% for p in pages %}
6
+ {% if p.permalink != cur_page_permalink %}
7
+ {% if p.permalink contains cur_page_permalink %}
8
+ <li>
9
+ <a href="{{ p.url }}">{{ p.title }}</a>
10
+ </li>
11
+ {% endif %}
12
+ {% endif %}
13
+ {% endfor %}
14
+ </ul>
@@ -0,0 +1,20 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {% include head.html %}
5
+
6
+ <body>
7
+
8
+ {% include header.html %}
9
+
10
+ <main class="page-content" aria-label="Content">
11
+ <div class="wrapper">
12
+ {{ content }}
13
+ </div>
14
+ </main>
15
+
16
+ {% include footer.html %}
17
+
18
+ </body>
19
+
20
+ </html>
@@ -0,0 +1,64 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="home">
6
+
7
+ <div class="hero">
8
+
9
+ <h1>INZITE Media WordPress Docs</h1>
10
+
11
+ </div>
12
+
13
+ <div class="welcome">
14
+ <h2>Sådan kommer du igang</h2>
15
+ <p>Velkommen til INZITE Medias guide til hjemmesideejere og administratorer. Her kan du finde vejledning og hjælp til daglig vedligehold af din WordPress side fra INZITE Media.</p>
16
+
17
+ <a class="btn" href="/docs/">Læs mere</a>
18
+ </div>
19
+
20
+ {% assign pages = site.pages | sort:"title" %}
21
+
22
+ <div class="frontpage-sections">
23
+ <div class="section">
24
+ <img src="{{ site.baseurl }}/assets/new.svg" alt="">
25
+ <a class="section-header" href="/docs/opret-indhold/">Opret nyt indhold</a>
26
+ <ul>
27
+ {% for p in pages %}
28
+ {% if p.permalink contains '/docs/opret-indhold/' %}
29
+ <li>
30
+ <a href="{{ p.url }}">{{ p.title }}</a>
31
+ </li>
32
+ {% endif %}
33
+ {% endfor %}
34
+ </ul>
35
+ </div>
36
+ <div class="section">
37
+ <img src="{{ site.baseurl }}/assets/edit.svg" alt="">
38
+ <a class="section-header" href="/docs/rediger-indhold/">Rediger eksisterende indhold</a>
39
+ <ul>
40
+ {% for p in pages %}
41
+ {% if p.permalink contains '/docs/rediger-indhold/' %}
42
+ <li>
43
+ <a href="{{ p.url }}">{{ p.title }}</a>
44
+ </li>
45
+ {% endif %}
46
+ {% endfor %}
47
+ </ul>
48
+ </div>
49
+ <div class="section">
50
+ <img src="{{ site.baseurl }}/assets/tools.svg" alt="">
51
+ <a class="section-header" href="/docs/workflows/">Øvrige funktioner</a>
52
+ <ul>
53
+ {% for p in pages %}
54
+ {% if p.permalink contains '/docs/workflows/' %}
55
+ <li>
56
+ <a href="{{ p.url }}">{{ p.title }}</a>
57
+ </li>
58
+ {% endif %}
59
+ {% endfor %}
60
+ </ul>
61
+ </div>
62
+ </div>
63
+
64
+ </div>
@@ -0,0 +1,19 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="page-content">
6
+
7
+ <article class="main-content">
8
+ <div class="main-content-inner">
9
+ <h1>{{ page.title | escape }}</h1>
10
+ {{ content }}
11
+ </div>
12
+ </article>
13
+ <aside class="sidebar">
14
+ <nav>
15
+ {% include sitemap.html context="/docs/" %}
16
+ </nav>
17
+ </aside>
18
+
19
+ </div>