Initial commit
Barely working port of the "snarky" (their words) new Bootstrap Blog example that was introduced with Bootstrap v4.0.0, but as it exists in Bootstrap v5 alpha 3 currently. This example replaced the classic blog example that had been a part of Bootstrap for several years and was replaced after v4 alpha. The Hugo theme logic here comes from my existing "Hugo Bootstrap v4 Blog" theme. See: https://github.com/alanorth/hugo-theme-bootstrap4-blog/ See: https://v5.getbootstrap.com/docs/5.0/examples/blog/
This commit is contained in:
25
package.json
Normal file
25
package.json
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "hugo-theme-bootstrap5-blog",
|
||||
"version": "0.0.1",
|
||||
"description": "An elegant and classy Hugo theme based on the Bootstrap v5 blog example.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/alanorth/hugo-theme-bootstrap5-blog.git"
|
||||
},
|
||||
"scripts": {
|
||||
"css": "npm-run-all css-compile css-minify",
|
||||
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css source/scss/style.scss assets/css/style.css.tmp",
|
||||
"css-minify": "cleancss -O1 --format breakWith=lf --source-map --source-map-inline-sources --output assets/css/style.min.css assets/css/style.css.tmp",
|
||||
"clean": "rm assets/css/style.css.tmp*",
|
||||
"dist": "npm-run-all css clean"
|
||||
},
|
||||
"keywords": "hugo",
|
||||
"author": "Alan Orth",
|
||||
"license": "CC-BY-3.0",
|
||||
"devDependencies": {
|
||||
"bootstrap": "^5.0.0-alpha3",
|
||||
"clean-css-cli": "^4.3.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"sass": "^1.29.0"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user