flanga 0.1.0.5 → 0.1.0.6
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 +4 -4
- data/_layouts/default.html +59 -5
- data/_layouts/home.html +56 -3
- metadata +1 -6
- data/_includes/body.html +0 -9
- data/_includes/footer.html +0 -3
- data/_includes/head.html +0 -16
- data/_includes/title.html +0 -4
- data/_includes/titlebar.html +0 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 966610d58e5c20deda98fd40f1df9295a557764e07b3bc50d89dbcd634b85440
|
|
4
|
+
data.tar.gz: aa59117553d7d885487627b8883b66a47b85bc2b2a2a89ffb37e04dd64d77e64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 925c9f58dc90e9e1c06a09d9bc8e581965b30b0cd1c00a8058c3d62df748c95a41a9705f2075e31e01da6e71fb48f2c4dacf4e8618aa464e4c84a8d2e05d948e
|
|
7
|
+
data.tar.gz: 939ed77b28791555e08bdfc3746ea7888fdc32433b51d0a148570d3c1d99aac6e327cf016f39640c390b78c28eb5b195f502584f98d7e2fc431f403a101209fc
|
data/_layouts/default.html
CHANGED
|
@@ -1,5 +1,59 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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>
|
data/_layouts/home.html
CHANGED
|
@@ -1,3 +1,56 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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.
|
|
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
|
data/_includes/body.html
DELETED
data/_includes/footer.html
DELETED
data/_includes/head.html
DELETED
|
@@ -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>
|
data/_includes/title.html
DELETED
data/_includes/titlebar.html
DELETED
|
@@ -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>
|