Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugoThemesSiteBuilder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNusser Studios <elnusserino@protonmail.com>2022-11-02 11:25:07 +0300
committerGitHub <noreply@github.com>2022-11-02 11:25:07 +0300
commiteb612073f305372987e682e0d8e932d61c856ba4 (patch)
tree36643aae9d6feaee5efc27bc7d2bb2834daae4f2
parent265ae0bf3bd2f7c0c79f64b7b41ace07ed7aa51f (diff)
Added Tailbliss theme. (#234)
-rw-r--r--themes.txt1
-rw-r--r--themes/tailbliss/LICENSE (renamed from LICENSE)4
-rw-r--r--themes/tailbliss/README.md45
-rw-r--r--themes/tailbliss/archetypes/default.md2
-rw-r--r--themes/tailbliss/config.toml5
-rw-r--r--themes/tailbliss/images/screenshot.jpgbin0 -> 431468 bytes
-rw-r--r--themes/tailbliss/images/tn.jpgbin0 -> 203850 bytes
-rw-r--r--themes/tailbliss/layouts/404.html0
-rw-r--r--themes/tailbliss/layouts/_default/baseof.html11
-rw-r--r--themes/tailbliss/layouts/_default/list.html0
-rw-r--r--themes/tailbliss/layouts/_default/single.html0
-rw-r--r--themes/tailbliss/layouts/index.html0
-rw-r--r--themes/tailbliss/layouts/partials/footer.html0
-rw-r--r--themes/tailbliss/layouts/partials/head.html0
-rw-r--r--themes/tailbliss/layouts/partials/header.html0
-rw-r--r--themes/tailbliss/theme.toml25
16 files changed, 91 insertions, 2 deletions
diff --git a/themes.txt b/themes.txt
index 569ae93..43c459e 100644
--- a/themes.txt
+++ b/themes.txt
@@ -456,3 +456,4 @@ gitlab.com/VincentTam/huginn
gitlab.com/writeonlyhugo/up-business-theme
gitlab.com/writeonlyhugo/writeonlyhugo-theme
wangchucheng.com/hugo-eureka
+github.com/nusserstudios/tailbliss \ No newline at end of file
diff --git a/LICENSE b/themes/tailbliss/LICENSE
index 261eeb9..47ff944 100644
--- a/LICENSE
+++ b/themes/tailbliss/LICENSE
@@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.
- Copyright [yyyy] [name of copyright owner]
+ Copyright [2022] [Nusser Studios]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -198,4 +198,4 @@
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
- limitations under the License.
+ limitations under the License. \ No newline at end of file
diff --git a/themes/tailbliss/README.md b/themes/tailbliss/README.md
new file mode 100644
index 0000000..59e2df2
--- /dev/null
+++ b/themes/tailbliss/README.md
@@ -0,0 +1,45 @@
+![Tailbliss](https://raw.githubusercontent.com/nusserstudios/tailbliss/main/static/images/tailbliss-full-blue.png)
+
+# TailBliss
+Hugo + TailwindCSS 3.2.0 + Alpine.js for Hacktoberfest
+
+TailBliss is an opinionated Hugo Starter with Tailwind CSS 3.2 and Alpine.js with light/dark modes.
+
+**Install to VS Code with:**
+`git clone git@github.com:nusserstudios/hugo-twcss-alpine.git your-name`
+
+##### Install with NPM
+`npm install`
+##### Install with Yarn
+`yarn`
+
+**To start developing:**
+##### Develop with NPM
+`npm run start`
+##### Develop with Yarn
+`yarn start`
+
+**To generate the site HTML:**
+##### Build with NPM
+`npm run build`
+##### Build with Yarn
+`yarn build`
+
+**npm run start** will run two commands parallel:
+`npx tailwindcss -i ./assets/css/main.css -o ./assets/css/style.css --watch`
+
+Has paginated Categories and Tags. Markdown files will automatically convert images put into `/assets` folder to .webp images.
+
+## Image shortcodes for webp as well.
+{{< imgh src="img-name.jpg" alt="Place alt text here." >}}
+
+<a href="https://www.buymeacoffee.com/nusserstudios" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-blue.png" alt="Buy Me A Coffee" height="41" width="174"></a>
+
+## Credits
+4044ever - Original Theme
+https://github.com/4044ever/Hugo-Tailwind-3.0.git
+
+Jan Heise - Alpine.js Navbar
+https://github.com/jan-heise/responsive-navbar-with-dropdown
+
+Made for Hacktoberfest, with ❤️ by NusserStudios. \ No newline at end of file
diff --git a/themes/tailbliss/archetypes/default.md b/themes/tailbliss/archetypes/default.md
new file mode 100644
index 0000000..ac36e06
--- /dev/null
+++ b/themes/tailbliss/archetypes/default.md
@@ -0,0 +1,2 @@
++++
++++
diff --git a/themes/tailbliss/config.toml b/themes/tailbliss/config.toml
new file mode 100644
index 0000000..99cbcc5
--- /dev/null
+++ b/themes/tailbliss/config.toml
@@ -0,0 +1,5 @@
+[module]
+ [module.hugoVersion]
+ extended = true
+ min = "0.105.0"
+ max = "0.105.0" \ No newline at end of file
diff --git a/themes/tailbliss/images/screenshot.jpg b/themes/tailbliss/images/screenshot.jpg
new file mode 100644
index 0000000..6456a6e
--- /dev/null
+++ b/themes/tailbliss/images/screenshot.jpg
Binary files differ
diff --git a/themes/tailbliss/images/tn.jpg b/themes/tailbliss/images/tn.jpg
new file mode 100644
index 0000000..ad51120
--- /dev/null
+++ b/themes/tailbliss/images/tn.jpg
Binary files differ
diff --git a/themes/tailbliss/layouts/404.html b/themes/tailbliss/layouts/404.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/themes/tailbliss/layouts/404.html
diff --git a/themes/tailbliss/layouts/_default/baseof.html b/themes/tailbliss/layouts/_default/baseof.html
new file mode 100644
index 0000000..5f8e2ec
--- /dev/null
+++ b/themes/tailbliss/layouts/_default/baseof.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+ {{- partial "head.html" . -}}
+ <body>
+ {{- partial "header.html" . -}}
+ <div id="content">
+ {{- block "main" . }}{{- end }}
+ </div>
+ {{- partial "footer.html" . -}}
+ </body>
+</html>
diff --git a/themes/tailbliss/layouts/_default/list.html b/themes/tailbliss/layouts/_default/list.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/themes/tailbliss/layouts/_default/list.html
diff --git a/themes/tailbliss/layouts/_default/single.html b/themes/tailbliss/layouts/_default/single.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/themes/tailbliss/layouts/_default/single.html
diff --git a/themes/tailbliss/layouts/index.html b/themes/tailbliss/layouts/index.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/themes/tailbliss/layouts/index.html
diff --git a/themes/tailbliss/layouts/partials/footer.html b/themes/tailbliss/layouts/partials/footer.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/themes/tailbliss/layouts/partials/footer.html
diff --git a/themes/tailbliss/layouts/partials/head.html b/themes/tailbliss/layouts/partials/head.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/themes/tailbliss/layouts/partials/head.html
diff --git a/themes/tailbliss/layouts/partials/header.html b/themes/tailbliss/layouts/partials/header.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/themes/tailbliss/layouts/partials/header.html
diff --git a/themes/tailbliss/theme.toml b/themes/tailbliss/theme.toml
new file mode 100644
index 0000000..6fc0cc8
--- /dev/null
+++ b/themes/tailbliss/theme.toml
@@ -0,0 +1,25 @@
+name = "Tailbliss"
+license = "Apache"
+licenselink = "https://github.com/nusserstudios/tailbliss/blob/main/LICENSE"
+description = "TailBliss is an Hugo Starter with Tailwind CSS 3.2 and Alpine.js with light and dark modes. Submitted for Hacktoberfest 2022."
+
+# The home page of the theme, where the source can be found.
+homepage = "https://github.com/nusserstudios/tailbliss"
+
+# If you have a running demo of the theme.
+demosite = "https://tailbliss.netlify.app"
+
+tags = ["blog", "tailwind", "tailwindcss", "darkmode", "lightmode"]
+features = ["blog", "categories", "webp", "tailwind3", "alpinejs"]
+
+# If the theme has a single author
+[author]
+ name = "Nusser Studios"
+ homepage = "https://nusserstudios.com"
+
+# If porting an existing theme
+[original]
+ author = "4044ever"
+ homepage = "https://github.com/4044ever"
+ repo = "https://github.com/4044ever/Hugo-Tailwind-3.1"
+