jekyll-applelike-theme 0.0.0 → 0.0.4
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/_includes/navigation.html +32 -0
- data/_layouts/default.html +17 -1
- data/_sass/jekyll-applelike-theme.scss +0 -0
- data/assets/css/style.scss +3 -0
- data/assets/img/logo.png +0 -0
- metadata +9 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a4b1f6b84b5a429c5e118ece751474c13dcd5d2
|
4
|
+
data.tar.gz: 45764a5a70433c120e0ca1cc8f2908c54ef616c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a61053483dec88e6afb84063b112a94e3dc0e216fef64662258d3d4c681cf138c77ec0649057a50c8efd3b0321fa99313f50c6824769a7a77fc3e2a9eb03f606
|
7
|
+
data.tar.gz: be2aa12614b8b89f481042a29c8bd181a76ff79c9789c031f17975f3b69485d3e7f6865a8082a6a078d6e33fb53bd2deb966525109836a828ddedf7596305a54
|
@@ -0,0 +1,32 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
4
|
+
|
5
|
+
<a class="navbar-brand" href="{{ "/" | absolute_url }}">
|
6
|
+
{%if site.logo %}
|
7
|
+
<img src="{{site.logo | relative_url}}" width="30" height="30" class="d-inline-block align-top rounded-circle" alt="Logo">
|
8
|
+
{% endif %}
|
9
|
+
</a>
|
10
|
+
|
11
|
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
12
|
+
<span class="navbar-toggler-icon"></span>
|
13
|
+
</button>
|
14
|
+
|
15
|
+
<div class="collapse navbar-collapse" id="navbarNav">
|
16
|
+
<div class="navbar-nav mr-auto">
|
17
|
+
{% for link in site.data.navigation.main %}
|
18
|
+
{% if link.url contains "http" %}
|
19
|
+
{% assign url = link.url %}
|
20
|
+
{% else %}
|
21
|
+
{% assign url = link.url | relative_url %}
|
22
|
+
{% endif %}
|
23
|
+
<a class="nav-item nav-link" href="{{ url }}">{{ link.title }}</a>
|
24
|
+
{% endfor %}
|
25
|
+
</div>
|
26
|
+
|
27
|
+
<form class="form-inline my-2 my-lg-0">
|
28
|
+
<input class="form-control" type="search" placeholder="Search" aria-label="Search">
|
29
|
+
</form>
|
30
|
+
</div>
|
31
|
+
|
32
|
+
</nav>
|
data/_layouts/default.html
CHANGED
@@ -1 +1,17 @@
|
|
1
|
-
|
1
|
+
<!doctype html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
6
|
+
<title>{{ page.title }}</title>
|
7
|
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
8
|
+
<link rel="stylesheet" href="/assets/css/style.css">
|
9
|
+
</head>
|
10
|
+
<body>
|
11
|
+
{% include navigation.html %}
|
12
|
+
{{ content }}
|
13
|
+
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
14
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
15
|
+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
16
|
+
</body>
|
17
|
+
</html>
|
File without changes
|
data/assets/img/logo.png
ADDED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-applelike-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Borgmann
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-07-
|
11
|
+
date: 2019-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '2.0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '2.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -61,9 +61,13 @@ extra_rdoc_files: []
|
|
61
61
|
files:
|
62
62
|
- LICENSE.txt
|
63
63
|
- README.md
|
64
|
+
- _includes/navigation.html
|
64
65
|
- _layouts/default.html
|
65
66
|
- _layouts/page.html
|
66
67
|
- _layouts/post.html
|
68
|
+
- _sass/jekyll-applelike-theme.scss
|
69
|
+
- assets/css/style.scss
|
70
|
+
- assets/img/logo.png
|
67
71
|
homepage: https://github.com/michaelborgmann/jekyll-applelike-theme
|
68
72
|
licenses:
|
69
73
|
- MIT
|
@@ -87,5 +91,5 @@ rubyforge_project:
|
|
87
91
|
rubygems_version: 2.5.2.3
|
88
92
|
signing_key:
|
89
93
|
specification_version: 4
|
90
|
-
summary: Applelike is a Jekyll theme for GitHub Pages.
|
94
|
+
summary: Applelike is a Jekyll theme for GitHub Pages.
|
91
95
|
test_files: []
|