jekyll-theme-acg 1.0.4 → 1.0.5

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.
data/_includes/body.html DELETED
@@ -1,5 +0,0 @@
1
- <body class="flex flex-col items-center bg-black bg-opacity-50">
2
- {% include header.html %}
3
- {% include main.html %}
4
- {% include footer.html %}
5
- </body>
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 -%}