jekyll-bootstrap-quickstart 0.1.1 → 0.1.2
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/README.md +59 -34
- data/src/_includes/jqs-build-version.html +1 -0
- data/src/_includes/jqs-favicons.html +8 -0
- data/src/_includes/jqs-feed.html +21 -0
- data/src/_includes/jqs-footer.html +25 -0
- data/src/_includes/jqs-google-analytics.html +7 -0
- data/src/_includes/jqs-head.html +12 -0
- data/src/_includes/jqs-header.html +27 -0
- data/src/_includes/jqs-js.html +5 -0
- data/src/_layouts/bs-blog.html +143 -0
- data/src/_layouts/jqs-default.html +14 -0
- data/src/_layouts/jqs-home.html +18 -0
- data/src/_layouts/jqs-no-css-js.html +16 -0
- data/src/_layouts/jqs-page.html +7 -0
- data/src/_layouts/jqs-post.html +25 -0
- data/src/_sass/jqs-styles.scss +13 -0
- data/src/_sass/minima-syntax-highlighting.scss +96 -0
- data/src/assets/css/bs-blog.css +130 -0
- data/src/assets/css/main.scss +5 -0
- data/src/assets/img/bootstrap-outline.svg +6 -0
- data/src/assets/img/bootstrap-solid.svg +6 -0
- data/src/assets/img/favicons/android-chrome-192x192.png +0 -0
- data/src/assets/img/favicons/android-chrome-512x512.png +0 -0
- data/src/assets/img/favicons/apple-touch-icon.png +0 -0
- data/src/assets/img/favicons/browserconfig.xml +12 -0
- data/src/assets/img/favicons/favicon-16x16.png +0 -0
- data/src/assets/img/favicons/favicon-32x32.png +0 -0
- data/src/assets/img/favicons/manifest.json +22 -0
- data/src/assets/img/favicons/mstile-144x144.png +0 -0
- data/src/assets/img/favicons/mstile-150x150.png +0 -0
- data/src/assets/img/favicons/mstile-310x150.png +0 -0
- data/src/assets/img/favicons/mstile-310x310.png +0 -0
- data/src/assets/img/favicons/mstile-70x70.png +0 -0
- data/src/assets/img/favicons/safari-pinned-tab.svg +20 -0
- data/src/assets/js/main.js +0 -0
- metadata +36 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1db24bd137bc227025f15aafab97f4aca26fd216cda0f64d2a0cc1a50401e88
|
4
|
+
data.tar.gz: 5593564870d68ee6c2cf7fc8057a9bbe30c9d872f85ec65d3f70ef512258543a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 159e4a93978d05fc6cd55a59033f68a801f75096aee1349409710213f1a479c71c081be05254150f7edeefd20198fac8d462ea5cfdc6a0dac857f3993e91f98e
|
7
|
+
data.tar.gz: ca5bc564a74c5316f997ebf49667e91df88702460ba496ecbbd90b68d6fb6368b2b0c6f085618d71021d922c35dda7688182ac70630e315423d6701b706f948d
|
data/README.md
CHANGED
@@ -1,12 +1,66 @@
|
|
1
1
|
# Jekyll Quickstart
|
2
2
|
|
3
|
-
This Quickstart
|
3
|
+
This Quickstart contains Jekyll layouts and includes to structure a simple site, and also includes Bootstrap as a front end framework.
|
4
4
|
|
5
|
-
##
|
6
|
-
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your Jekyll site's `Gemfile`:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem "jekyll-bootstrap-quickstart"
|
11
|
+
```
|
12
|
+
|
13
|
+
And add this line to your Jekyll site's `_config.yml`:
|
14
|
+
|
15
|
+
```yaml
|
16
|
+
theme: jekyll-bootstrap-quickstart
|
17
|
+
```
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
|
21
|
+
$ bundle
|
22
|
+
|
23
|
+
Or install it yourself as:
|
24
|
+
|
25
|
+
$ gem install jekyll-bootstrap-quickstart
|
26
|
+
|
27
|
+
## Usage
|
28
|
+
|
29
|
+
### Layouts
|
30
|
+
- Default
|
31
|
+
- Page
|
32
|
+
- Error
|
33
|
+
|
34
|
+
### Includes
|
35
|
+
- Build Version
|
36
|
+
- Favicons
|
37
|
+
- Google Analytics
|
38
|
+
- Head Tag (including CSS Imports)
|
39
|
+
- js Imports
|
40
|
+
|
41
|
+
## Customization
|
42
|
+
|
43
|
+
### Styling
|
44
|
+
|
45
|
+
Add custom styles by overriding the `assets/css/main.scss` file. Copy this import statement to include all the Bootstrap and Jekyll Quickstart CSS. To start with a clean slate just leave this out.
|
46
|
+
```
|
47
|
+
---
|
48
|
+
---
|
49
|
+
|
50
|
+
// Import custom styles from Sass file
|
51
|
+
@import "jqs-styles"
|
7
52
|
|
8
|
-
|
9
|
-
|
53
|
+
```
|
54
|
+
|
55
|
+
### Javascript
|
56
|
+
Add custom JS to `assets/js.main.js`
|
57
|
+
|
58
|
+
## Development
|
59
|
+
|
60
|
+
To set up your environment to develop this theme (Assumes macOS):
|
61
|
+
|
62
|
+
### Clone Jekyll Quickstart Repo
|
63
|
+
[https://bitbucket.org/azaleahill/jekyll-quickstart/](https://bitbucket.org/azaleahill/jekyll-quickstart/)
|
10
64
|
|
11
65
|
### Homebrew
|
12
66
|
Install Homebrew. [https://brew.sh/](https://brew.sh/)
|
@@ -93,36 +147,7 @@ $ yarn run deploy
|
|
93
147
|
### Favicons
|
94
148
|
Need to be at `assets/img/favicons/`
|
95
149
|
|
96
|
-
## Usage
|
97
150
|
|
98
|
-
### Layouts
|
99
|
-
- Default
|
100
|
-
- Page
|
101
|
-
- Error
|
102
|
-
|
103
|
-
### Includes
|
104
|
-
- Build Version
|
105
|
-
- Favicons
|
106
|
-
- Google Analytics
|
107
|
-
- Head Tag (including CSS Imports)
|
108
|
-
- js Imports
|
109
|
-
|
110
|
-
## Customization
|
111
|
-
|
112
|
-
### Styling
|
113
|
-
|
114
|
-
Add custom styles by overriding the `assets/css/main.scss` file. Copy this import statement to include all the Bootstrap and Jekyll Quickstart CSS. To start with a clean slate just leave this out.
|
115
|
-
```
|
116
|
-
---
|
117
|
-
---
|
118
|
-
|
119
|
-
// Import custom styles from Sass file
|
120
|
-
@import "jqs-styles"
|
121
|
-
|
122
|
-
```
|
123
|
-
|
124
|
-
### Javascript
|
125
|
-
Add custom JS to `assets/js.main.js`
|
126
151
|
|
127
152
|
## Contributing
|
128
153
|
|
@@ -0,0 +1 @@
|
|
1
|
+
<!-- This page generated at {{ site.time | date_to_xmlschema }} {% if site.production == false %}for {{ site.env-name }} environment{% endif %}. -->
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<link rel="apple-touch-icon" href="{{ '/assets/img/favicons/apple-touch-icon.png' | relative_url }}" sizes="180x180">
|
2
|
+
<link rel="icon" href="{{ '/assets/img/favicons/favicon-32x32.png' | relative_url }}" sizes="32x32" type="image/png">
|
3
|
+
<link rel="icon" href="{{ '/assets/img/favicons/favicon-16x16.png' | relative_url }}" sizes="16x16" type="image/png">
|
4
|
+
<link rel="manifest" href="{{ '/assets/img/favicons/manifest.json' | relative_url }}">
|
5
|
+
<link rel="mask-icon" href="{{ '/assets/img/favicons/safari-pinned-tab.svg' | relative_url }}" color="#{{ site.theme-color }}">
|
6
|
+
<link rel="icon" href="{{ '/favicon.ico' | relative_url }}">
|
7
|
+
<meta name="msapplication-config" content="{{ '/assets/img/favicons/browserconfig.xml' | relative_url }}">
|
8
|
+
<meta name="theme-color" content="#{{ site.theme-color }}">
|
@@ -0,0 +1,21 @@
|
|
1
|
+
{%- if site.posts.size > 0 -%}
|
2
|
+
<h3 class="pt-3">{{ page.list_title | default: "Recent Activity" }}
|
3
|
+
<a href="{{ '/feed.xml' | relative_url }}" style="font-size: .75em; color:Orange"><i class="fas fa-rss"></i></a>
|
4
|
+
</h3>
|
5
|
+
<ul class="list-inline mb-0">
|
6
|
+
{%- for post in site.posts -%}
|
7
|
+
<li class="list-inline-item">
|
8
|
+
<h5>
|
9
|
+
<a href="{{ post.url | relative_url }}">
|
10
|
+
{{ post.title | escape }}
|
11
|
+
</a>
|
12
|
+
</h5>
|
13
|
+
{%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
|
14
|
+
<p class="mb-1 text-muted">{{ post.date | date: date_format }}</p>
|
15
|
+
{%- if site.show_excerpts -%}
|
16
|
+
<small>{{ post.excerpt | truncatewords: 25}}</small>
|
17
|
+
{%- endif -%}
|
18
|
+
</li>
|
19
|
+
{%- endfor -%}
|
20
|
+
</ul>
|
21
|
+
{%- endif -%}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<footer class="container">
|
2
|
+
<hr>
|
3
|
+
<div class="pt-2 px-3 pb-4">
|
4
|
+
<h6>{{ site.title | escape }}</h6>
|
5
|
+
<div class="row">
|
6
|
+
<div class="col-md-5">
|
7
|
+
<ul class="list-unstyled">
|
8
|
+
{%- if site.author -%}
|
9
|
+
<li>
|
10
|
+
<small>{{ site.author | escape }}</small>
|
11
|
+
</li>
|
12
|
+
{%- endif -%}
|
13
|
+
{%- if site.email -%}
|
14
|
+
<li>
|
15
|
+
<small><a href="mailto:{{ site.email }}">{{ site.email }}</a></small>
|
16
|
+
</li>
|
17
|
+
{%- endif -%}
|
18
|
+
</ul>
|
19
|
+
</div>
|
20
|
+
<div class="col-md-7">
|
21
|
+
<p><small>{{- site.description | escape -}}</small></p>
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
</footer>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.ga_tracking_id }}"></script>
|
2
|
+
<script>
|
3
|
+
window.dataLayer = window.dataLayer || [];
|
4
|
+
function gtag(){dataLayer.push(arguments);}
|
5
|
+
gtag('js', new Date());
|
6
|
+
gtag('config', '{{ site.ga_tracking_id }}');
|
7
|
+
</script>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<head>
|
2
|
+
<meta charset="utf-8">
|
3
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
4
|
+
{%- seo -%}
|
5
|
+
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
|
6
|
+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
|
7
|
+
{%- feed_meta -%}
|
8
|
+
{% if site.production == true and site.ga_tracking_id %}
|
9
|
+
{%- include jqs-google-analytics.html %}
|
10
|
+
{% endif %}
|
11
|
+
{%- include jqs-favicons.html %}
|
12
|
+
</head>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<header>
|
2
|
+
<nav class="navbar navbar-dark bg-dark navbar-expand-md fixed-top">
|
3
|
+
<a class="navbar-brand" href="{{ '/' | relative_url }}">
|
4
|
+
<img src="{{ '/assets/img/bootstrap-outline.svg' | relative_url }}" width="30" height="30" class="d-inline-block align-top" alt="">
|
5
|
+
{{ site.title | escape }}
|
6
|
+
</a>
|
7
|
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarLinks" aria-controls="navbarLinks" aria-expanded="false" aria-label="Toggle navigation">
|
8
|
+
<span class="navbar-toggler-icon"></span>
|
9
|
+
</button>
|
10
|
+
{%- assign default_paths = site.pages | map: "path" -%}
|
11
|
+
{%- assign page_paths = site.header_pages | default: default_paths -%}
|
12
|
+
{%- if page_paths -%}
|
13
|
+
<div class="collapse navbar-collapse" id="navbarLinks">
|
14
|
+
<ul class="navbar-nav mr-auto">
|
15
|
+
{%- for path in page_paths -%}
|
16
|
+
{%- assign my_page = site.pages | where: "path", path | first -%}
|
17
|
+
{%- if my_page.title -%}
|
18
|
+
<li class="nav-item {% if page.url == my_page.url %}active{% endif %}">
|
19
|
+
<a class="nav-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
|
20
|
+
</li>
|
21
|
+
{%- endif -%}
|
22
|
+
{% endfor -%}
|
23
|
+
</ul>
|
24
|
+
</div>
|
25
|
+
{%- endif -%}
|
26
|
+
</nav>
|
27
|
+
</header>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<script src="{{ '/assets/js/lib/jquery.min.js' | relative_url }}"></script>
|
2
|
+
<script src="{{ '/assets/js/lib/popper.min.js' | relative_url }}"></script>
|
3
|
+
<script src="{{ '/assets/js/lib/bootstrap.min.js' | relative_url }}"></script>
|
4
|
+
<script src="{{ '/assets/js/lib/holder.min.js' | relative_url }}"></script>
|
5
|
+
<script src="{{ '/assets/js/main.js' | relative_url }}"></script>
|
@@ -0,0 +1,143 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html lang="en">
|
3
|
+
|
4
|
+
<head>
|
5
|
+
<meta charset="utf-8">
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
7
|
+
{%- seo -%}
|
8
|
+
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
|
9
|
+
<link rel="stylesheet" href="{{ '/assets/css/bs-blog.css' | relative_url }}">
|
10
|
+
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:700,900" rel="stylesheet">
|
11
|
+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
|
12
|
+
{%- feed_meta -%}
|
13
|
+
{% if site.production == true and site.ga_tracking_id %}
|
14
|
+
{%- include jqs-google-analytics.html %}
|
15
|
+
{% endif %}
|
16
|
+
{%- include jqs-favicons.html %}
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<div class="container">
|
21
|
+
<header class="blog-header py-3">
|
22
|
+
<div class="row flex-nowrap justify-content-between align-items-center">
|
23
|
+
<div class="col-4 pt-1">
|
24
|
+
<a class="text-muted" href="{{ '/feed.xml' | relative_url }}">Subscribe</a>
|
25
|
+
</div>
|
26
|
+
<div class="col-4 text-center">
|
27
|
+
<a class="blog-header-logo text-dark" href="{{ '/' | relative_url }}">{{ page.title | escape }}</a>
|
28
|
+
</div>
|
29
|
+
<div class="col-4 d-flex justify-content-end align-items-center">
|
30
|
+
<a class="btn btn-sm btn-outline-secondary" href="#">Sign up</a>
|
31
|
+
</div>
|
32
|
+
</div>
|
33
|
+
</header>
|
34
|
+
|
35
|
+
{%- assign default_paths = site.pages | map: "path" -%}
|
36
|
+
{%- assign page_paths = site.header_pages | default: default_paths -%}
|
37
|
+
|
38
|
+
{%- if page_paths -%}
|
39
|
+
<div class="nav-scroller py-1 mb-2">
|
40
|
+
<nav class="nav d-flex justify-content-around">
|
41
|
+
{%- for path in page_paths -%}
|
42
|
+
{%- assign my_page = site.pages | where: "path", path | first -%}
|
43
|
+
{%- if my_page.title -%}
|
44
|
+
<a class="p-2 text-muted" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
|
45
|
+
{%- endif -%}
|
46
|
+
{% endfor -%}
|
47
|
+
</nav>
|
48
|
+
</div>
|
49
|
+
{%- endif -%}
|
50
|
+
|
51
|
+
<div class="jumbotron p-3 p-md-5 text-white rounded bg-dark">
|
52
|
+
<div class="col-md-6 px-0">
|
53
|
+
<h1 class="display-4 font-italic">{{ site.title | escape }}</h1>
|
54
|
+
<p class="lead my-3">{{ site.description }}</p>
|
55
|
+
<p class="lead mb-0"><a href="{{ site.url }}{{ site.base_url }}{% link docs.md %}" class="text-white font-weight-bold">Continue reading...</a></p>
|
56
|
+
</div>
|
57
|
+
</div>
|
58
|
+
|
59
|
+
{%- if site.posts.size > 0 -%}
|
60
|
+
<div class="row mb-2">
|
61
|
+
{%- for post in site.posts limit:2 -%}
|
62
|
+
<div class="col-md-6">
|
63
|
+
<div class="card flex-md-row mb-4 box-shadow h-md-250">
|
64
|
+
<div class="card-body d-flex flex-column align-items-start">
|
65
|
+
<strong class="d-inline-block mb-2 text-primary">{{ post.categories }}</strong>
|
66
|
+
<h3 class="mb-0">
|
67
|
+
<a class="text-dark" href="{{ post.url | relative_url }}">{{ post.title | escape | truncate: 30 }}</a>
|
68
|
+
</h3>
|
69
|
+
{%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
|
70
|
+
<div class="mb-1 text-muted">{{ post.date | date: date_format }}</div>
|
71
|
+
<p class="card-text mb-auto">{{ post.excerpt | truncatewords: 10 }}</p>
|
72
|
+
<a href="{{ post.url | relative_url }}">Continue reading</a>
|
73
|
+
</div>
|
74
|
+
<img class="card-img-right flex-auto d-none d-lg-block" data-src="holder.js/200x250?theme=thumb" alt="Card image cap">
|
75
|
+
</div>
|
76
|
+
</div>
|
77
|
+
{%- endfor -%}
|
78
|
+
</div>
|
79
|
+
{%- endif -%}
|
80
|
+
</div>
|
81
|
+
|
82
|
+
<main role="main" class="container">
|
83
|
+
{{ content }}
|
84
|
+
<div class="row">
|
85
|
+
{%- if site.posts.size > 0 -%}
|
86
|
+
<div class="col-md-8 blog-main">
|
87
|
+
{%- for post in site.posts -%}
|
88
|
+
<div class="blog-post">
|
89
|
+
<h2 class="blog-post-title">{{ post.title | escape }}</h2>
|
90
|
+
{%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
|
91
|
+
<p class="blog-post-meta">{{ post.date | date: date_format }} by {{ post.author }}</p>
|
92
|
+
<p>{{ post.excerpt }}</p>
|
93
|
+
</div>
|
94
|
+
{%- endfor -%}
|
95
|
+
</div>
|
96
|
+
{%- endif -%}
|
97
|
+
|
98
|
+
<aside class="col-md-4 blog-sidebar">
|
99
|
+
<div class="p-3 mb-3 bg-light rounded">
|
100
|
+
<h4 class="font-italic">About</h4>
|
101
|
+
<p class="mb-0">{{ site.description }}</p>
|
102
|
+
</div>
|
103
|
+
<div class="p-3">
|
104
|
+
<h4 class="font-italic">Archives</h4>
|
105
|
+
<ol class="list-unstyled mb-0">
|
106
|
+
<li><a href="#">March 2014</a></li>
|
107
|
+
<li><a href="#">February 2014</a></li>
|
108
|
+
<li><a href="#">January 2014</a></li>
|
109
|
+
<li><a href="#">December 2013</a></li>
|
110
|
+
<li><a href="#">November 2013</a></li>
|
111
|
+
<li><a href="#">October 2013</a></li>
|
112
|
+
<li><a href="#">September 2013</a></li>
|
113
|
+
<li><a href="#">August 2013</a></li>
|
114
|
+
<li><a href="#">July 2013</a></li>
|
115
|
+
<li><a href="#">June 2013</a></li>
|
116
|
+
<li><a href="#">May 2013</a></li>
|
117
|
+
<li><a href="#">April 2013</a></li>
|
118
|
+
</ol>
|
119
|
+
</div>
|
120
|
+
<div class="p-3">
|
121
|
+
<h4 class="font-italic">Elsewhere</h4>
|
122
|
+
<ol class="list-unstyled">
|
123
|
+
<li><a href="#">GitHub</a></li>
|
124
|
+
<li><a href="#">Twitter</a></li>
|
125
|
+
<li><a href="#">Facebook</a></li>
|
126
|
+
</ol>
|
127
|
+
</div>
|
128
|
+
</aside>
|
129
|
+
</div>
|
130
|
+
</main>
|
131
|
+
|
132
|
+
{%- include jqs-footer.html -%}
|
133
|
+
{%- include jqs-js.html -%}
|
134
|
+
<script>
|
135
|
+
Holder.addTheme('thumb', {
|
136
|
+
bg: '#55595c',
|
137
|
+
fg: '#eceeef',
|
138
|
+
text: 'Thumbnail'
|
139
|
+
});
|
140
|
+
</script>
|
141
|
+
</body>
|
142
|
+
|
143
|
+
</html>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html lang="{{ page.lang | default: site.lang | default: en }}">
|
3
|
+
{% include jqs-build-version.html %}
|
4
|
+
|
5
|
+
{%- include jqs-head.html -%}
|
6
|
+
|
7
|
+
<body class="fixed-header-body">
|
8
|
+
{%- include jqs-header.html -%}
|
9
|
+
{{ content }}
|
10
|
+
{%- include jqs-footer.html -%}
|
11
|
+
{%- include jqs-js.html -%}
|
12
|
+
</body>
|
13
|
+
|
14
|
+
</html>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
---
|
2
|
+
layout: jqs-default
|
3
|
+
---
|
4
|
+
|
5
|
+
<div class="container">
|
6
|
+
<div class="row">
|
7
|
+
<div class="col-md-7 col-lg-8">
|
8
|
+
{%- if page.title -%}
|
9
|
+
<h1>{{ page.title }}</h1>
|
10
|
+
{%- endif -%}
|
11
|
+
{{ content }}
|
12
|
+
</div>
|
13
|
+
<div class="col-md-5 col-lg-4">
|
14
|
+
{%- include jqs-feed.html %}
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
</div>
|
18
|
+
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<!doctype html>
|
2
|
+
<html lang="{{ page.lang | default: site.lang | default: en }}">
|
3
|
+
{% include jqs-build-version.html %}
|
4
|
+
|
5
|
+
<head>
|
6
|
+
<meta charset="utf-8">
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
8
|
+
<title>{{ page.title | escape }} | {{ site.title | escape }}</title>
|
9
|
+
{%- include jqs-favicons.html %}
|
10
|
+
</head>
|
11
|
+
|
12
|
+
<body>
|
13
|
+
{{ content }}
|
14
|
+
</body>
|
15
|
+
|
16
|
+
</html>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
---
|
2
|
+
layout: jqs-default
|
3
|
+
---
|
4
|
+
|
5
|
+
<div class="container">
|
6
|
+
<article itemscope itemtype="http://schema.org/BlogPosting">
|
7
|
+
<header>
|
8
|
+
<h1 itemprop="name headline">{{ page.title | escape }}</h1>
|
9
|
+
<p class="text-muted">
|
10
|
+
{%- if page.author -%}
|
11
|
+
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
|
12
|
+
<span class="font-weight-bold mr-3" itemprop="name">By {{ page.author }}</span>
|
13
|
+
</span>
|
14
|
+
{%- endif -%}
|
15
|
+
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
16
|
+
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} {{ page.date | date: date_format }}
|
17
|
+
</time>
|
18
|
+
</p>
|
19
|
+
</header>
|
20
|
+
<div itemprop="articleBody">
|
21
|
+
{{ content }}
|
22
|
+
</div>
|
23
|
+
<a href="{{ page.url | relative_url }}" hidden></a>
|
24
|
+
</article>
|
25
|
+
</div>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/*! Jekyll Quickstart CSS
|
2
|
+
*/
|
3
|
+
|
4
|
+
/* Show it is fixed to the top */
|
5
|
+
.fixed-header-body {
|
6
|
+
padding-top: 5rem;
|
7
|
+
}
|
8
|
+
|
9
|
+
// Import Bootstrap CSS
|
10
|
+
@import "../../node_modules/bootstrap/scss/bootstrap.scss";
|
11
|
+
|
12
|
+
// Jekyll Minima Syntax Highlighting
|
13
|
+
@import "minima-syntax-highlighting";
|
@@ -0,0 +1,96 @@
|
|
1
|
+
/**
|
2
|
+
* Code formatting
|
3
|
+
*/
|
4
|
+
pre,
|
5
|
+
code {
|
6
|
+
font-size: 0.75em;
|
7
|
+
border: 1px solid #e8e8e8;
|
8
|
+
border-radius: 3px;
|
9
|
+
background-color: #f5f5f5;
|
10
|
+
}
|
11
|
+
|
12
|
+
code {
|
13
|
+
padding: 1px 5px;
|
14
|
+
}
|
15
|
+
|
16
|
+
pre {
|
17
|
+
padding: 8px 12px;
|
18
|
+
overflow-x: auto;
|
19
|
+
|
20
|
+
> code {
|
21
|
+
border: 0;
|
22
|
+
padding-right: 0;
|
23
|
+
padding-left: 0;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
/**
|
28
|
+
* Syntax highlighting styles
|
29
|
+
*/
|
30
|
+
.highlight {
|
31
|
+
background: #fff;
|
32
|
+
|
33
|
+
.highlighter-rouge & {
|
34
|
+
background: #f5f5f5;
|
35
|
+
}
|
36
|
+
|
37
|
+
.c { color: #998; font-style: italic } // Comment
|
38
|
+
.err { color: #a61717; background-color: #e3d2d2 } // Error
|
39
|
+
.k { font-weight: bold } // Keyword
|
40
|
+
.o { font-weight: bold } // Operator
|
41
|
+
.cm { color: #998; font-style: italic } // Comment.Multiline
|
42
|
+
.cp { color: #999; font-weight: bold } // Comment.Preproc
|
43
|
+
.c1 { color: #998; font-style: italic } // Comment.Single
|
44
|
+
.cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
|
45
|
+
.gd { color: #000; background-color: #fdd } // Generic.Deleted
|
46
|
+
.gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
|
47
|
+
.ge { font-style: italic } // Generic.Emph
|
48
|
+
.gr { color: #a00 } // Generic.Error
|
49
|
+
.gh { color: #999 } // Generic.Heading
|
50
|
+
.gi { color: #000; background-color: #dfd } // Generic.Inserted
|
51
|
+
.gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
|
52
|
+
.go { color: #888 } // Generic.Output
|
53
|
+
.gp { color: #555 } // Generic.Prompt
|
54
|
+
.gs { font-weight: bold } // Generic.Strong
|
55
|
+
.gu { color: #aaa } // Generic.Subheading
|
56
|
+
.gt { color: #a00 } // Generic.Traceback
|
57
|
+
.kc { font-weight: bold } // Keyword.Constant
|
58
|
+
.kd { font-weight: bold } // Keyword.Declaration
|
59
|
+
.kp { font-weight: bold } // Keyword.Pseudo
|
60
|
+
.kr { font-weight: bold } // Keyword.Reserved
|
61
|
+
.kt { color: #458; font-weight: bold } // Keyword.Type
|
62
|
+
.m { color: #099 } // Literal.Number
|
63
|
+
.s { color: #d14 } // Literal.String
|
64
|
+
.na { color: #008080 } // Name.Attribute
|
65
|
+
.nb { color: #0086B3 } // Name.Builtin
|
66
|
+
.nc { color: #458; font-weight: bold } // Name.Class
|
67
|
+
.no { color: #008080 } // Name.Constant
|
68
|
+
.ni { color: #800080 } // Name.Entity
|
69
|
+
.ne { color: #900; font-weight: bold } // Name.Exception
|
70
|
+
.nf { color: #900; font-weight: bold } // Name.Function
|
71
|
+
.nn { color: #555 } // Name.Namespace
|
72
|
+
.nt { color: #000080 } // Name.Tag
|
73
|
+
.nv { color: #008080 } // Name.Variable
|
74
|
+
.ow { font-weight: bold } // Operator.Word
|
75
|
+
.w { color: #bbb } // Text.Whitespace
|
76
|
+
.mf { color: #099 } // Literal.Number.Float
|
77
|
+
.mh { color: #099 } // Literal.Number.Hex
|
78
|
+
.mi { color: #099 } // Literal.Number.Integer
|
79
|
+
.mo { color: #099 } // Literal.Number.Oct
|
80
|
+
.sb { color: #d14 } // Literal.String.Backtick
|
81
|
+
.sc { color: #d14 } // Literal.String.Char
|
82
|
+
.sd { color: #d14 } // Literal.String.Doc
|
83
|
+
.s2 { color: #d14 } // Literal.String.Double
|
84
|
+
.se { color: #d14 } // Literal.String.Escape
|
85
|
+
.sh { color: #d14 } // Literal.String.Heredoc
|
86
|
+
.si { color: #d14 } // Literal.String.Interpol
|
87
|
+
.sx { color: #d14 } // Literal.String.Other
|
88
|
+
.sr { color: #009926 } // Literal.String.Regex
|
89
|
+
.s1 { color: #d14 } // Literal.String.Single
|
90
|
+
.ss { color: #990073 } // Literal.String.Symbol
|
91
|
+
.bp { color: #999 } // Name.Builtin.Pseudo
|
92
|
+
.vc { color: #008080 } // Name.Variable.Class
|
93
|
+
.vg { color: #008080 } // Name.Variable.Global
|
94
|
+
.vi { color: #008080 } // Name.Variable.Instance
|
95
|
+
.il { color: #099 } // Literal.Number.Integer.Long
|
96
|
+
}
|
@@ -0,0 +1,130 @@
|
|
1
|
+
/* stylelint-disable selector-list-comma-newline-after */
|
2
|
+
|
3
|
+
.blog-header {
|
4
|
+
line-height: 1;
|
5
|
+
border-bottom: 1px solid #e5e5e5;
|
6
|
+
}
|
7
|
+
|
8
|
+
.blog-header-logo {
|
9
|
+
font-family: "Playfair Display", Georgia, "Times New Roman", serif;
|
10
|
+
font-size: 2.25rem;
|
11
|
+
}
|
12
|
+
|
13
|
+
.blog-header-logo:hover {
|
14
|
+
text-decoration: none;
|
15
|
+
}
|
16
|
+
|
17
|
+
h1, h2, h3, h4, h5, h6 {
|
18
|
+
font-family: "Playfair Display", Georgia, "Times New Roman", serif;
|
19
|
+
}
|
20
|
+
|
21
|
+
.display-4 {
|
22
|
+
font-size: 2.5rem;
|
23
|
+
}
|
24
|
+
@media (min-width: 768px) {
|
25
|
+
.display-4 {
|
26
|
+
font-size: 3rem;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
.nav-scroller {
|
31
|
+
position: relative;
|
32
|
+
z-index: 2;
|
33
|
+
height: 2.75rem;
|
34
|
+
overflow-y: hidden;
|
35
|
+
}
|
36
|
+
|
37
|
+
.nav-scroller .nav {
|
38
|
+
display: -ms-flexbox;
|
39
|
+
display: flex;
|
40
|
+
-ms-flex-wrap: nowrap;
|
41
|
+
flex-wrap: nowrap;
|
42
|
+
padding-bottom: 1rem;
|
43
|
+
margin-top: -1px;
|
44
|
+
overflow-x: auto;
|
45
|
+
text-align: center;
|
46
|
+
white-space: nowrap;
|
47
|
+
-webkit-overflow-scrolling: touch;
|
48
|
+
}
|
49
|
+
|
50
|
+
.nav-scroller .nav-link {
|
51
|
+
padding-top: .75rem;
|
52
|
+
padding-bottom: .75rem;
|
53
|
+
font-size: .875rem;
|
54
|
+
}
|
55
|
+
|
56
|
+
.card-img-right {
|
57
|
+
height: 100%;
|
58
|
+
border-radius: 0 3px 3px 0;
|
59
|
+
}
|
60
|
+
|
61
|
+
.flex-auto {
|
62
|
+
-ms-flex: 0 0 auto;
|
63
|
+
flex: 0 0 auto;
|
64
|
+
}
|
65
|
+
|
66
|
+
.h-250 { height: 250px; }
|
67
|
+
@media (min-width: 768px) {
|
68
|
+
.h-md-250 { height: 250px; }
|
69
|
+
}
|
70
|
+
|
71
|
+
.border-top { border-top: 1px solid #e5e5e5; }
|
72
|
+
.border-bottom { border-bottom: 1px solid #e5e5e5; }
|
73
|
+
|
74
|
+
.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }
|
75
|
+
|
76
|
+
/*
|
77
|
+
* Blog name and description
|
78
|
+
*/
|
79
|
+
.blog-title {
|
80
|
+
margin-bottom: 0;
|
81
|
+
font-size: 2rem;
|
82
|
+
font-weight: 400;
|
83
|
+
}
|
84
|
+
.blog-description {
|
85
|
+
font-size: 1.1rem;
|
86
|
+
color: #999;
|
87
|
+
}
|
88
|
+
|
89
|
+
@media (min-width: 40em) {
|
90
|
+
.blog-title {
|
91
|
+
font-size: 3.5rem;
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
/* Pagination */
|
96
|
+
.blog-pagination {
|
97
|
+
margin-bottom: 4rem;
|
98
|
+
}
|
99
|
+
.blog-pagination > .btn {
|
100
|
+
border-radius: 2rem;
|
101
|
+
}
|
102
|
+
|
103
|
+
/*
|
104
|
+
* Blog posts
|
105
|
+
*/
|
106
|
+
.blog-post {
|
107
|
+
margin-bottom: 4rem;
|
108
|
+
}
|
109
|
+
.blog-post-title {
|
110
|
+
margin-bottom: .25rem;
|
111
|
+
font-size: 2.5rem;
|
112
|
+
}
|
113
|
+
.blog-post-meta {
|
114
|
+
margin-bottom: 1.25rem;
|
115
|
+
color: #999;
|
116
|
+
}
|
117
|
+
|
118
|
+
/*
|
119
|
+
* Footer
|
120
|
+
*/
|
121
|
+
.blog-footer {
|
122
|
+
padding: 2.5rem 0;
|
123
|
+
color: #999;
|
124
|
+
text-align: center;
|
125
|
+
background-color: #f9f9f9;
|
126
|
+
border-top: .05rem solid #e5e5e5;
|
127
|
+
}
|
128
|
+
.blog-footer p:last-child {
|
129
|
+
margin-bottom: 0;
|
130
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 180 612 612">
|
2
|
+
<g fill="#FFF" sodipodi:docname="twitter_bootstrap_logo.svg" inkscape:version="0.48.1 r9760" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
3
|
+
<path d="M510 186c25.5 0 49.6 10 67.8 28.2S606 256.5 606 282v408c0 25.5-10 49.6-28.2 67.8S535.5 786 510 786H102c-25.5 0-49.6-10-67.8-28.2S6 715.5 6 690V282c0-25.5 10-49.6 28.2-67.8S76.5 186 102 186h408m0-6H102C45.9 180 0 225.9 0 282v408c0 56.1 45.9 102 102 102h408c56.1 0 102-45.9 102-102V282c0-56.1-45.9-102-102-102z"/>
|
4
|
+
<path d="M166.3 313h173.5c32 0 57.7 7.3 77 22s29 36.8 29 66.5c0 18-4.4 33.4-13.2 46.2-8.8 12.8-21.4 22.8-37.8 29.8v1c22 4.7 38.7 15.1 50 31.2 11.3 16.2 17 36.4 17 60.8 0 14-2.5 27.1-7.5 39.2-5 12.2-12.8 22.7-23.5 31.5s-24.3 15.8-41 21-36.5 7.8-59.5 7.8h-164V313zm62.5 149.5h102c15 0 27.5-4.2 37.5-12.8s15-20.8 15-36.8c0-18-4.5-30.7-13.5-38s-22-11-39-11h-102v98.6zm0 156.5h110.5c19 0 33.8-4.9 44.2-14.8 10.5-9.8 15.8-23.8 15.8-41.8 0-17.7-5.2-31.2-15.8-40.8s-25.2-14.2-44.2-14.2H228.8V619z"/>
|
5
|
+
</g>
|
6
|
+
</svg>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 612 612">
|
2
|
+
<g sodipodi:docname="twitter_bootstrap_logo.svg" inkscape:version="0.48.1 r9760" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
3
|
+
<path fill="#563D7C" d="M612 510c0 56.1-45.9 102-102 102H102C45.9 612 0 566.1 0 510V102C0 45.9 45.9 0 102 0h408c56.1 0 102 45.9 102 102v408z"/>
|
4
|
+
<path fill="#FFF" d="M166.3 133h173.5c32 0 57.7 7.3 77 22s29 36.8 29 66.5c0 18-4.4 33.4-13.2 46.2-8.8 12.8-21.4 22.8-37.8 29.8v1c22 4.7 38.7 15.1 50 31.2 11.3 16.2 17 36.4 17 60.8 0 14-2.5 27.1-7.5 39.2-5 12.2-12.8 22.7-23.5 31.5s-24.3 15.8-41 21-36.5 7.8-59.5 7.8h-164V133zm62.5 149.5h102c15 0 27.5-4.2 37.5-12.8s15-20.8 15-36.8c0-18-4.5-30.7-13.5-38s-22-11-39-11h-102v98.6zm0 156.5h110.5c19 0 33.8-4.9 44.2-14.8 10.5-9.8 15.8-23.8 15.8-41.8 0-17.7-5.2-31.2-15.8-40.8s-25.2-14.2-44.2-14.2H228.8V439z"/>
|
5
|
+
</g>
|
6
|
+
</svg>
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
---
|
3
|
+
|
4
|
+
<?xml version="1.0" encoding="utf-8"?>
|
5
|
+
<browserconfig>
|
6
|
+
<msapplication>
|
7
|
+
<tile>
|
8
|
+
<square150x150logo src="{{ 'assets/img/favicons/mstile-150x150.png' | relative_url }}"/>
|
9
|
+
<TileColor>#{{ site.theme-color }}</TileColor>
|
10
|
+
</tile>
|
11
|
+
</msapplication>
|
12
|
+
</browserconfig>
|
Binary file
|
Binary file
|
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
---
|
3
|
+
{
|
4
|
+
"name": "{{ site.title }}",
|
5
|
+
"short_name": "{{ site.title }}",
|
6
|
+
"icons": [
|
7
|
+
{
|
8
|
+
"src": "{{ 'assets/img/favicons/android-chrome-192x192.png' | relative_url }}",
|
9
|
+
"sizes": "192x192",
|
10
|
+
"type": "image/png"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"src": "{{ 'assets/img/favicons/android-chrome-512x512.png' | relative_url }}",
|
14
|
+
"sizes": "512x512",
|
15
|
+
"type": "image/png"
|
16
|
+
}
|
17
|
+
],
|
18
|
+
"start_url": "/",
|
19
|
+
"theme_color": "#{{ site.theme-color }}",
|
20
|
+
"background_color": "#{{ site.theme-color }}",
|
21
|
+
"display": "standalone"
|
22
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
5
|
+
width="700.000000pt" height="700.000000pt" viewBox="0 0 700.000000 700.000000"
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
7
|
+
<metadata>
|
8
|
+
Created by potrace 1.11, written by Peter Selinger 2001-2013
|
9
|
+
</metadata>
|
10
|
+
<g transform="translate(0.000000,700.000000) scale(0.100000,-0.100000)"
|
11
|
+
fill="#000000" stroke="none">
|
12
|
+
<path d="M975 6983 c-494 -88 -870 -467 -959 -965 -13 -72 -15 -404 -14 -2513
|
13
|
+
0 -1970 3 -2446 13 -2515 46 -295 206 -564 445 -747 60 -46 164 -113 175 -113
|
14
|
+
3 0 31 -13 62 -28 73 -35 146 -58 260 -82 84 -17 196 -18 2563 -16 2334 1
|
15
|
+
2479 3 2545 19 39 10 77 20 85 22 74 18 226 87 310 139 92 58 255 209 298 276
|
16
|
+
9 14 28 41 43 60 36 48 111 200 138 280 12 36 30 106 40 155 18 86 19 188 17
|
17
|
+
2570 l-1 2480 -27 95 c-52 188 -106 300 -207 434 -170 225 -400 372 -691 442
|
18
|
+
-71 17 -200 18 -2545 20 -2111 2 -2482 0 -2550 -13z"/>
|
19
|
+
</g>
|
20
|
+
</svg>
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-bootstrap-quickstart
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Azalea Hill, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-04-
|
11
|
+
date: 2018-04-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -89,6 +89,40 @@ extra_rdoc_files: []
|
|
89
89
|
files:
|
90
90
|
- LICENSE
|
91
91
|
- README.md
|
92
|
+
- src/_includes/jqs-build-version.html
|
93
|
+
- src/_includes/jqs-favicons.html
|
94
|
+
- src/_includes/jqs-feed.html
|
95
|
+
- src/_includes/jqs-footer.html
|
96
|
+
- src/_includes/jqs-google-analytics.html
|
97
|
+
- src/_includes/jqs-head.html
|
98
|
+
- src/_includes/jqs-header.html
|
99
|
+
- src/_includes/jqs-js.html
|
100
|
+
- src/_layouts/bs-blog.html
|
101
|
+
- src/_layouts/jqs-default.html
|
102
|
+
- src/_layouts/jqs-home.html
|
103
|
+
- src/_layouts/jqs-no-css-js.html
|
104
|
+
- src/_layouts/jqs-page.html
|
105
|
+
- src/_layouts/jqs-post.html
|
106
|
+
- src/_sass/jqs-styles.scss
|
107
|
+
- src/_sass/minima-syntax-highlighting.scss
|
108
|
+
- src/assets/css/bs-blog.css
|
109
|
+
- src/assets/css/main.scss
|
110
|
+
- src/assets/img/bootstrap-outline.svg
|
111
|
+
- src/assets/img/bootstrap-solid.svg
|
112
|
+
- src/assets/img/favicons/android-chrome-192x192.png
|
113
|
+
- src/assets/img/favicons/android-chrome-512x512.png
|
114
|
+
- src/assets/img/favicons/apple-touch-icon.png
|
115
|
+
- src/assets/img/favicons/browserconfig.xml
|
116
|
+
- src/assets/img/favicons/favicon-16x16.png
|
117
|
+
- src/assets/img/favicons/favicon-32x32.png
|
118
|
+
- src/assets/img/favicons/manifest.json
|
119
|
+
- src/assets/img/favicons/mstile-144x144.png
|
120
|
+
- src/assets/img/favicons/mstile-150x150.png
|
121
|
+
- src/assets/img/favicons/mstile-310x150.png
|
122
|
+
- src/assets/img/favicons/mstile-310x310.png
|
123
|
+
- src/assets/img/favicons/mstile-70x70.png
|
124
|
+
- src/assets/img/favicons/safari-pinned-tab.svg
|
125
|
+
- src/assets/js/main.js
|
92
126
|
homepage: https://jqs.azaleahill.io/
|
93
127
|
licenses:
|
94
128
|
- MIT
|