jekyll-theme-acg 1.0.4 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +15 -1
- data/_config.yml +13 -8
- data/_includes/article.html +8 -0
- data/_includes/footer.html +2 -4
- data/_includes/header.html +12 -16
- data/_includes/item-category.html +26 -0
- data/_includes/item-date.html +10 -0
- data/_includes/item-pin.html +2 -0
- data/_includes/item-tag.html +29 -0
- data/_includes/posts.html +53 -0
- data/_includes/style.html +16 -74
- data/_layouts/categories.html +21 -0
- data/_layouts/category.html +14 -0
- data/_layouts/default.html +27 -6
- data/_layouts/home.html +14 -85
- data/_layouts/page.html +13 -0
- data/_layouts/post.html +13 -33
- data/_layouts/tag.html +14 -0
- data/_layouts/tags.html +21 -0
- data/_sass/markdown.scss +51 -0
- data/_sass/root.scss +97 -37
- data/_sass/scrollbar.scss +24 -0
- data/assets/404.html +6 -0
- data/assets/about.md +11 -0
- data/assets/categories.html +4 -0
- data/assets/css/style.scss +1 -12
- data/assets/tags.html +4 -0
- metadata +77 -36
- data/_includes/body.html +0 -5
- data/_includes/head.html +0 -26
- data/_includes/main.html +0 -12
data/_includes/body.html
DELETED
data/_includes/head.html
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
{% capture color %}{{ page.color | default: site.color }}{% endcapture %}
|
2
|
-
|
3
|
-
{%- comment -%}{%- endcomment -%}
|
4
|
-
<head>
|
5
|
-
<meta charset="utf-8">
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7
|
-
|
8
|
-
{% seo %}<!-- Begin Jekyll Feed -->
|
9
|
-
{% feed_meta %}
|
10
|
-
<!-- End Jekyll Feed -->
|
11
|
-
|
12
|
-
<!-- Tailwind CSS -->
|
13
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tailwindcss@2/dist/tailwind.min.css">
|
14
|
-
<!-- Primer Markdown CSS -->
|
15
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/primer-markdown@4.0.0/build/build.css">
|
16
|
-
<!-- HighlightJS -->
|
17
|
-
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.0.1/build/highlight.min.js"></script>
|
18
|
-
<script>hljs.highlightAll();</script>
|
19
|
-
<!-- HighlightJS Theme VS2015 CSS -->
|
20
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/highlight.js@11.0.1/styles/vs2015.css">
|
21
|
-
<!-- CSS -->
|
22
|
-
<link rel="stylesheet" href="{{ "assets/css/style.css" | relative_url }}">
|
23
|
-
<!-- Scroll Bar CSS -->
|
24
|
-
{% include style.html %}
|
25
|
-
</head>
|
26
|
-
{%- comment -%}{%- endcomment -%}
|
data/_includes/main.html
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
{% capture color %}{{ page.color | default: site.color }}{% endcapture %}
|
2
|
-
{%- comment -%}{%- endcomment -%}
|
3
|
-
<main class="w-full flex-grow">
|
4
|
-
<figure class="w-full h-screen flex flex-col justify-center items-center select-none">
|
5
|
-
<figcaption class="w-full h-full flex flex-col items-center justify-center text-{{ color }}-50">
|
6
|
-
<span class="block font-serif text-4xl w-3/4 text-center py-4">{{ page.title | default: site.title }}</span>
|
7
|
-
<span class="block font-sans text-base w-2/3 text-center">{{ page.description | default: site.description }}</span>
|
8
|
-
</figcaption>
|
9
|
-
</figure>
|
10
|
-
{{ content }}
|
11
|
-
</main>
|
12
|
-
{%- comment -%}{%- endcomment -%}
|