flanga 0.1.0.3 → 0.1.0.4

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
- SHA1:
3
- metadata.gz: 5642f40f21840e8ae0b8529c1cd651f564ddf357
4
- data.tar.gz: 38d83039eb28609bba31f491a1bbb8f757d1e075
2
+ SHA256:
3
+ metadata.gz: f5d4983fa91e6ba2e5b8ffea2a23425a1a6097a706c405f69f7f82407c94e553
4
+ data.tar.gz: d354228e20f30813db5dcde3219b8e9446aa87454e00e4a5fe50ff68f607ccb3
5
5
  SHA512:
6
- metadata.gz: 46507079195333b54b07e792d791ef4ddc4373cf3784482e8d7642a5a8226aef01f9ebec773401e1a86e1c960cf27bf8abe912de193c299d1be68e385df12258
7
- data.tar.gz: 3d228af27ea7220d50081dcc2041a027851a9739799aa2af9c09d362985ec76fc3174a87891ea5bc58dd69894cc6ec3f7d89713fef2c20ed8b6ebc514273a19f
6
+ metadata.gz: a6791147362bb45f0e8b21454ed0de57238fadb745e3f6fde65cf833fb7bf2d0daf5244d260e3f116f4f5f9f3be79146b8c4a7500c0cb678ec686617bf1bd407
7
+ data.tar.gz: 87ef4d4c3d37b517a73ee32b54817e2307c9cc6c0b23fc6672c7de5a768dc1e89ee79984d33eab4bca958f60818e1217130e1b40e2111df2b15da8a620abc4ff
@@ -1,3 +1,3 @@
1
- </div>
1
+ </div>
2
2
  </body>
3
3
  </html>
@@ -1,5 +1,6 @@
1
1
  <!--
2
2
  Flanga Website File
3
+ Built by Jekyll
3
4
  -->
4
5
  <!DOCTYPE HTML>
5
6
  <html>
@@ -8,8 +9,8 @@
8
9
  <meta http-equiv="content-type" content="{{ page.contenttype }}; charset=utf-8" />
9
10
  <meta name="description" content="{{ page.description }}" />
10
11
  <meta name="keywords" content="{{ page.keywoards }}" />
11
- <script src="https://js.fstatic.io/flanga/jquery/jquery.min.js"></script>
12
- <script src="https://js.fstatic.io/flanga/skel/skel.min.js"></script>
13
- <script src="https://js.fstatic.io/flanga/flanga.min.js"></script>
14
- <link rel="shortcut icon" href="https://cdn.fstatic.io/flanga/i/flanga.svg" />
12
+ <script src="https://{{ page.jscdn }}{{ page.jquery }}"></script>
13
+ <script src="https://{{ page.jscdn }}{{ page.skel }}"></script>
14
+ <script src="https://{{ page.jscdn }}{{ page.mainjs }}"></script>
15
+ <link rel="shortcut icon" href="https://{{ page.cdn }}{{ page.logo }}" />
15
16
  </head>
@@ -3,13 +3,13 @@
3
3
  <div class="header">
4
4
  <nav>
5
5
  <div class="nav-wrapper">
6
- <a href="https://www.flanga.io" class="flangalogo"><img src="https://cdn.fstatic.io/flanga/i/flanga.svg" alt="Flanga" style="width:35px; height:35px;"</i></a>
6
+ <a href="https://{{ page.home }}" class="flangalogo"><img src="https://{{ page.cdn }}{{ page.logo }}" alt="{{ page.companyname }}" style="width:35px; height:35px;"</i></a>
7
7
  <ul class="right hide-on-med-and-down">
8
- <li><a href="https://www.flanga.io">Home</a></li>
9
- <li><a href="https://sks.flanga.io">Keyserver</a></li>
10
- <li><a href="https://docs.flanga.io">Docs</a></li>
11
- <li><a href="https://pki.flanga.io">PKI</a></li>
12
- <li><a href="https://www.flanga.io/contact">Contact</a></li>
8
+ {% for name in page.menubars %}
9
+ {% for value in name %}
10
+ <li class="{{ name[forloop.index0].status }}"><a href="{{ name[forloop.index0].url }}">{{ name[forloop.index0].name }}</a></li>
11
+ {% endfor %}
12
+ {% endfor %}
13
13
  </ul>
14
14
  </div>
15
15
  </nav>
@@ -1,3 +1,3 @@
1
1
  {% include head.html %}
2
- {% include titlebar_home.html %}
2
+ {% include titlebar.html %}
3
3
  {% include footer.html %}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flanga
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.3
4
+ version: 0.1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Moritz Wirth
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-26 00:00:00.000000000 Z
11
+ date: 2017-12-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -66,17 +66,8 @@ files:
66
66
  - _includes/head.html
67
67
  - _includes/title.html
68
68
  - _includes/titlebar.html
69
- - _includes/titlebar_contact.html
70
- - _includes/titlebar_docs.html
71
- - _includes/titlebar_home.html
72
- - _includes/titlebar_keyserver.html
73
- - _includes/titlebar_pki.html
74
- - _layouts/contact.html
75
69
  - _layouts/default.html
76
- - _layouts/docs.html
77
70
  - _layouts/home.html
78
- - _layouts/keyserver.html
79
- - _layouts/pki.html
80
71
  homepage: https://www.flanga.io
81
72
  licenses:
82
73
  - GPL-3.0
@@ -97,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
88
  version: '0'
98
89
  requirements: []
99
90
  rubyforge_project:
100
- rubygems_version: 2.6.11
91
+ rubygems_version: 2.7.4
101
92
  signing_key:
102
93
  specification_version: 4
103
94
  summary: Flanga Jekyll Theme
@@ -1,16 +0,0 @@
1
- <body id="top">
2
- <div class="flanga">
3
- <div class="header">
4
- <nav>
5
- <div class="nav-wrapper">
6
- <a href="https://www.flanga.io" class="flangalogo"><img src="https://cdn.fstatic.io/flanga/i/flanga.svg" alt="Flanga" style="width:35px; height:35px;"</i></a>
7
- <ul class="right hide-on-med-and-down">
8
- <li><a href="https://www.flanga.io">Home</a></li>
9
- <li><a href="https://sks.flanga.io">Keyserver</a></li>
10
- <li><a href="https://docs.flanga.io">Docs</a></li>
11
- <li><a href="https://pki.flanga.io">PKI</a></li>
12
- <li class="active"><a href="https://www.flanga.io/contact">Contact</a></li>
13
- </ul>
14
- </div>
15
- </nav>
16
- </div>
@@ -1,16 +0,0 @@
1
- <body id="top">
2
- <div class="flanga">
3
- <div class="header">
4
- <nav>
5
- <div class="nav-wrapper">
6
- <a href="https://www.flanga.io" class="flangalogo"><img src="https://cdn.fstatic.io/flanga/i/flanga.svg" alt="Flanga" style="width:35px; height:35px;"</i></a>
7
- <ul class="right hide-on-med-and-down">
8
- <li><a href="https://www.flanga.io">Home</a></li>
9
- <li><a href="https://sks.flanga.io">Keyserver</a></li>
10
- <li class="active"><a href="https://docs.flanga.io">Docs</a></li>
11
- <li><a href="https://pki.flanga.io">PKI</a></li>
12
- <li><a href="https://www.flanga.io/contact">Contact</a></li>
13
- </ul>
14
- </div>
15
- </nav>
16
- </div>
@@ -1,16 +0,0 @@
1
- <body id="top">
2
- <div class="flanga">
3
- <div class="header">
4
- <nav>
5
- <div class="nav-wrapper">
6
- <a href="https://www.flanga.io" class="flangalogo"><img src="https://cdn.fstatic.io/flanga/i/flanga.svg" alt="Flanga" style="width:35px; height:35px;"</i></a>
7
- <ul class="right hide-on-med-and-down">
8
- <li class="active"><a href="https://www.flanga.io">Home</a></li>
9
- <li><a href="https://sks.flanga.io">Keyserver</a></li>
10
- <li><a href="https://docs.flanga.io">Docs</a></li>
11
- <li><a href="https://pki.flanga.io">PKI</a></li>
12
- <li><a href="https://www.flanga.io/contact">Contact</a></li>
13
- </ul>
14
- </div>
15
- </nav>
16
- </div>
@@ -1,16 +0,0 @@
1
- <body id="top">
2
- <div class="flanga">
3
- <div class="header">
4
- <nav>
5
- <div class="nav-wrapper">
6
- <a href="https://www.flanga.io" class="flangalogo"><img src="https://cdn.fstatic.io/flanga/i/flanga.svg" alt="Flanga" style="width:35px; height:35px;"</i></a>
7
- <ul class="right hide-on-med-and-down">
8
- <li><a href="https://www.flanga.io">Home</a></li>
9
- <li class="active"><a href="https://sks.flanga.io">Keyserver</a></li>
10
- <li><a href="https://docs.flanga.io">Docs</a></li>
11
- <li><a href="https://pki.flanga.io">PKI</a></li>
12
- <li><a href="https://www.flanga.io/contact">Contact</a></li>
13
- </ul>
14
- </div>
15
- </nav>
16
- </div>
@@ -1,16 +0,0 @@
1
- <body id="top">
2
- <div class="flanga">
3
- <div class="header">
4
- <nav>
5
- <div class="nav-wrapper">
6
- <a href="https://www.flanga.io" class="flangalogo"><img src="https://cdn.fstatic.io/flanga/i/flanga.svg" alt="Flanga" style="width:35px; height:35px;"</i></a>
7
- <ul class="right hide-on-med-and-down">
8
- <li><a href="https://www.flanga.io">Home</a></li>
9
- <li><a href="https://sks.flanga.io">Keyserver</a></li>
10
- <li><a href="https://docs.flanga.io">Docs</a></li>
11
- <li class="active"><a href="https://pki.flanga.io">PKI</a></li>
12
- <li><a href="https://www.flanga.io/contact">Contact</a></li>
13
- </ul>
14
- </div>
15
- </nav>
16
- </div>
@@ -1,5 +0,0 @@
1
- {% include head.html %}
2
- {% include titlebar_contact.html %}
3
- {% include title.html %}
4
- {% include body.html %}
5
- {% include footer.html %}
@@ -1,5 +0,0 @@
1
- {% include head.html %}
2
- {% include titlebar_docs.html %}
3
- {% include title.html %}
4
- {% include body.html %}
5
- {% include footer.html %}
@@ -1,5 +0,0 @@
1
- {% include head.html %}
2
- {% include titlebar_keyserver.html %}
3
- {% include title.html %}
4
- {% include body.html %}
5
- {% include footer.html %}
@@ -1,5 +0,0 @@
1
- {% include head.html %}
2
- {% include titlebar_pki.html %}
3
- {% include title.html %}
4
- {% include body.html %}
5
- {% include footer.html %}