flanga 0.1.0.5 → 0.1.0.6

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
  SHA256:
3
- metadata.gz: 75d59835604030d0d74b8f1c1019555a54a2c016258bdb9e25b4a8d0b1643d84
4
- data.tar.gz: a2121c9403cfe82e071e9a77a3c8f868ab016af986a8d339ed0d169026809816
3
+ metadata.gz: 966610d58e5c20deda98fd40f1df9295a557764e07b3bc50d89dbcd634b85440
4
+ data.tar.gz: aa59117553d7d885487627b8883b66a47b85bc2b2a2a89ffb37e04dd64d77e64
5
5
  SHA512:
6
- metadata.gz: d0648ffef315765ef73ae67b0726267509cee7e7b2e82a4041ef4dcb2de3dd0b84c074aceff1ee8c4c6666d2f83b79357aafd9b5c2aed1a18f29261d9fc22b09
7
- data.tar.gz: d3d1924342ba973e55915ea734e202a600c114856485c9e49b838b2555fb6e68fe8a3e61a91b9c5a27fba8624dd0c0a87f487bceaaa2d5c9ed9bb8a74f33de99
6
+ metadata.gz: 925c9f58dc90e9e1c06a09d9bc8e581965b30b0cd1c00a8058c3d62df748c95a41a9705f2075e31e01da6e71fb48f2c4dacf4e8618aa464e4c84a8d2e05d948e
7
+ data.tar.gz: 939ed77b28791555e08bdfc3746ea7888fdc32433b51d0a148570d3c1d99aac6e327cf016f39640c390b78c28eb5b195f502584f98d7e2fc431f403a101209fc
@@ -1,5 +1,59 @@
1
- {% include head.html %}
2
- {% include titlebar.html %}
3
- {% include title.html %}
4
- {% include body.html %}
5
- {% include footer.html %}
1
+ <!--
2
+ Flanga Website File
3
+ Built by Jekyll
4
+ Commit: INSERTTRAVISCOMMITHEREFLANGA
5
+ -->
6
+ <!DOCTYPE HTML>
7
+ <html>
8
+ <head>
9
+ <title>{{ page.title }}</title>
10
+ <meta http-equiv="content-type" content="{{ page.contenttype }}; charset=utf-8" />
11
+ <meta name="description" content="{{ page.description }}" />
12
+ <meta name="keywords" content="{{ page.keywoards }}" />
13
+ {% for js in site.javascript %}
14
+ {% for value in js %}
15
+ <script src="{{ js[forloop.index0].url }}"></script>
16
+ {% endfor %}
17
+ {% endfor %}
18
+ {% for css in site.stylesheets %}
19
+ {% for value in css %}
20
+ <link rel="stylesheet" href="{{ css[forloop.index0].url }}" />
21
+ {% endfor %}
22
+ {% endfor %}
23
+ <link rel="shortcut icon" href="{{ site.favicon }}" />
24
+ </head>
25
+
26
+ <body id="top">
27
+ <div class="flanga">
28
+ <div class="header">
29
+ <nav>
30
+ <div class="nav-wrapper">
31
+ <a href="https://{{ site.home }}" class="flangalogo"><img src="{{ site.logo }}" alt="{{ site.companyname }}" style="width:35px; height:35px;"</i></a>
32
+ <ul class="right hide-on-med-and-down">
33
+ {% for name in site.menubars %}
34
+ {% for value in name %}
35
+ {% if page.activetab == name[forloop.index0].name %}
36
+ <li class="active"><a href="{{ name[forloop.index0].url }}">{{ name[forloop.index0].name }}</a></li>
37
+ {% else %}
38
+ <li><a href="{{ name[forloop.index0].url }}">{{ name[forloop.index0].name }}</a></li>
39
+ {% endif %}
40
+ {% endfor %}
41
+ {% endfor %}
42
+ </ul>
43
+ </div>
44
+ </nav>
45
+ </div>
46
+ <div class="title">
47
+ <div class="container">
48
+ <div class="12u">
49
+ <h1>{{ page.title }}</h1>
50
+ <h6>{{ page.subtitle }}</h6>
51
+ </div>
52
+ </div>
53
+ </div>
54
+ <div class="body">
55
+ {{ content }}
56
+ </div>
57
+ </div>
58
+ </body>
59
+ </html>
@@ -1,3 +1,56 @@
1
- {% include head.html %}
2
- {% include titlebar.html %}
3
- {% include footer.html %}
1
+ <!--
2
+ Flanga Website File
3
+ Built by Jekyll
4
+ Commit: INSERTTRAVISCOMMITHEREFLANGA
5
+ -->
6
+ <!DOCTYPE HTML>
7
+ <html>
8
+ <head>
9
+ <title>{{ page.title }}</title>
10
+ <meta http-equiv="content-type" content="{{ page.contenttype }}; charset=utf-8" />
11
+ <meta name="description" content="{{ page.description }}" />
12
+ <meta name="keywords" content="{{ page.keywoards }}" />
13
+ {% for js in site.javascript %}
14
+ {% for value in js %}
15
+ <script src="{{ js[forloop.index0].url }}"></script>
16
+ {% endfor %}
17
+ {% endfor %}
18
+ {% for css in site.stylesheets %}
19
+ {% for value in css %}
20
+ <link rel="stylesheet" href="{{ css[forloop.index0].url }}" />
21
+ {% endfor %}
22
+ {% endfor %}
23
+ <link rel="shortcut icon" href="{{ site.favicon }}" />
24
+ </head>
25
+
26
+ <body id="top">
27
+ <div class="flanga">
28
+ <div class="header">
29
+ <nav>
30
+ <div class="nav-wrapper">
31
+ <a href="https://{{ site.home }}" class="flangalogo"><img src="{{ site.logo }}" alt="{{ site.companyname }}" style="width:35px; height:35px;"</i></a>
32
+ <ul class="right hide-on-med-and-down">
33
+ {% for name in site.menubars %}
34
+ {% for value in name %}
35
+ {% if page.activetab == name[forloop.index0].name %}
36
+ <li class="active"><a href="{{ name[forloop.index0].url }}">{{ name[forloop.index0].name }}</a></li>
37
+ {% else %}
38
+ <li><a href="{{ name[forloop.index0].url }}">{{ name[forloop.index0].name }}</a></li>
39
+ {% endif %}
40
+ {% endfor %}
41
+ {% endfor %}
42
+ </ul>
43
+ </div>
44
+ </nav>
45
+ </div>
46
+ <div class="body">
47
+ <div class="title">
48
+ <div class="imgtitle">
49
+ <img src="{{ site.logo }}" alt="{{ site.companyname }}"/>
50
+ </div>
51
+ </div>
52
+ {{ content }}
53
+ </div>
54
+ </div>
55
+ </body>
56
+ </html>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flanga
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.5
4
+ version: 0.1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Moritz Wirth
@@ -61,11 +61,6 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - LICENSE
63
63
  - README.md
64
- - _includes/body.html
65
- - _includes/footer.html
66
- - _includes/head.html
67
- - _includes/title.html
68
- - _includes/titlebar.html
69
64
  - _layouts/default.html
70
65
  - _layouts/home.html
71
66
  homepage: https://www.flanga.io
@@ -1,9 +0,0 @@
1
- <div class="body">
2
- <div class="container">
3
- <div class="row">
4
- <div class="12u">
5
- {{ content }}
6
- </div>
7
- </div>
8
- </div>
9
- </div>
@@ -1,3 +0,0 @@
1
- </div>
2
- </body>
3
- </html>
@@ -1,16 +0,0 @@
1
- <!--
2
- Flanga Website File
3
- Built by Jekyll
4
- -->
5
- <!DOCTYPE HTML>
6
- <html>
7
- <head>
8
- <title>{{ page.title }}</title>
9
- <meta http-equiv="content-type" content="{{ page.contenttype }}; charset=utf-8" />
10
- <meta name="description" content="{{ page.description }}" />
11
- <meta name="keywords" content="{{ page.keywoards }}" />
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 }}" />
16
- </head>
@@ -1,4 +0,0 @@
1
- <div class="title">
2
- <h1>{{ page.title }}</h1>
3
- <h6>{{ page.subtitle }}</h6>
4
- </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://{{ page.home }}" class="flangalogo"><img src="https://{{ page.cdn }}{{ page.logo }}" alt="{{ page.companyname }}" style="width:35px; height:35px;"</i></a>
7
- <ul class="right hide-on-med-and-down">
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
- </ul>
14
- </div>
15
- </nav>
16
- </div>