Compare commits
No commits in common. "2f8808100fe0fb89014ae34fac7d8dafc2d75404" and "2571a30c4ea6c12a2f55a73b6ab7388cad2fac3a" have entirely different histories.
2f8808100f
...
2571a30c4e
|
@ -1,3 +1,3 @@
|
||||||
[submodule "themes/hugo-coder-fork"]
|
[submodule "themes/hugo-coder-fork"]
|
||||||
path = themes/hugo-coder
|
path = themes/hugo-coder
|
||||||
url = git@gitlab.com:rayelliottdev/hugo-coder-fork.git
|
url = ssh://git@git.rayelliott.dev:3222/rayelliott/hugo-coder-fork.git
|
||||||
|
|
7
TODO.md
7
TODO.md
|
@ -1,8 +1,8 @@
|
||||||
## Comments
|
## Comments
|
||||||
|
|
||||||
# TODO
|
* [Talkyard](https://www.talkyard.io/blog-comments)
|
||||||
|
|
||||||
* Add to resources post - [Shape Divider App](https://www.shapedivider.app/)
|
# TODO
|
||||||
|
|
||||||
* rewrite 'about me' to make more interesting.
|
* rewrite 'about me' to make more interesting.
|
||||||
|
|
||||||
|
@ -10,6 +10,9 @@
|
||||||
|
|
||||||
When enough content done:
|
When enough content done:
|
||||||
|
|
||||||
|
* consider analytics on Gitea site too.
|
||||||
|
* comments functionality
|
||||||
|
|
||||||
## FlowMM
|
## FlowMM
|
||||||
|
|
||||||
extended future version:
|
extended future version:
|
||||||
|
|
|
@ -5,7 +5,7 @@ languageCode = "en-us"
|
||||||
title = "RayElliottDev"
|
title = "RayElliottDev"
|
||||||
theme = "hugo-coder"
|
theme = "hugo-coder"
|
||||||
|
|
||||||
publishDir = "public"
|
publishDir = "dist"
|
||||||
|
|
||||||
[markup.goldmark.renderer]
|
[markup.goldmark.renderer]
|
||||||
unsafe= true
|
unsafe= true
|
||||||
|
|
|
@ -9,20 +9,15 @@ tags = ["Bootstrap", "Tailwind", "CSS"]
|
||||||
series = []
|
series = []
|
||||||
+++
|
+++
|
||||||
|
|
||||||
## Introduction
|
|
||||||
|
|
||||||
## what they are?
|
## what they are?
|
||||||
|
|
||||||
|
|
||||||
tailwind - utility first css framework
|
tailwind - utility first css framework
|
||||||
utility first - no automatically styled components
|
utility first - no automatically styled components
|
||||||
- gives utility classes that help with styling, allows to build classes
|
- gives utility classes that help with styling, allows to build classes
|
||||||
- basically just bunch of predefined css utility classes
|
- basically just bunch of predefined css utility classes
|
||||||
- creating a project that has a custom look without writing any css.
|
- creating a project that has a custom look without writing any css.
|
||||||
- v1.0 released May 2019
|
|
||||||
- github 28.1k stars, 9 open issues, 960 closed (6/10/2020)
|
|
||||||
bootstrap - UI kit framework - has a default theme and a number of design decisions.
|
bootstrap - UI kit framework - has a default theme and a number of design decisions.
|
||||||
- released august 2011
|
|
||||||
= github stars 145k, 317 open issues, 19,313 closed (6/10/2020)
|
|
||||||
|
|
||||||
popularity of both - bootstrap most popular and first, tailwind new and upcoming.
|
popularity of both - bootstrap most popular and first, tailwind new and upcoming.
|
||||||
|
|
||||||
|
|
30
netlify.toml
30
netlify.toml
|
@ -1,30 +0,0 @@
|
||||||
[build]
|
|
||||||
publish = "public"
|
|
||||||
command = "hugo --gc --minify"
|
|
||||||
|
|
||||||
[context.production.environment]
|
|
||||||
HUGO_VERSION = "0.75.1"
|
|
||||||
HUGO_ENV = "production"
|
|
||||||
HUGO_ENABLEGITINFO = "true"
|
|
||||||
|
|
||||||
[context.split1]
|
|
||||||
command = "hugo --gc --minify --enableGitInfo"
|
|
||||||
|
|
||||||
[context.split1.environment]
|
|
||||||
HUGO_VERSION = "0.75.1"
|
|
||||||
HUGO_ENV = "production"
|
|
||||||
|
|
||||||
[context.deploy-preview]
|
|
||||||
command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL"
|
|
||||||
|
|
||||||
[context.deploy-preview.environment]
|
|
||||||
HUGO_VERSION = "0.75.1"
|
|
||||||
|
|
||||||
[context.branch-deploy]
|
|
||||||
command = "hugo --gc --minify -b $DEPLOY_PRIME_URL"
|
|
||||||
|
|
||||||
[context.branch-deploy.environment]
|
|
||||||
HUGO_VERSION = "0.75.1"
|
|
||||||
|
|
||||||
[context.next.environment]
|
|
||||||
HUGO_ENABLEGITINFO = "true"
|
|
Reference in New Issue