mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2025-05-10 14:36:01 +02:00
Compare commits
20 Commits
Author | SHA1 | Date | |
---|---|---|---|
6dde205d0d
|
|||
28a2013d85
|
|||
66298fa0ef
|
|||
a38342b330
|
|||
6d8df04c19
|
|||
900bb6468c
|
|||
7d40acef85 | |||
7dbe547dce | |||
43d4fb3d2d | |||
5fe17ee120
|
|||
ab444c93b5
|
|||
eb70aea769
|
|||
5b548c730a
|
|||
2a42864125
|
|||
7f819cfdd1
|
|||
4b2b1617c0
|
|||
415ae8956c
|
|||
3987192a31
|
|||
3254306148
|
|||
536dd793fe
|
@ -3,7 +3,8 @@ node_js:
|
||||
- 10
|
||||
- 12
|
||||
- 13
|
||||
- 14
|
||||
script: npm run build
|
||||
dist: bionic
|
||||
dist: focal
|
||||
|
||||
# vim: ts=2 sw=2 et
|
||||
|
11
CHANGELOG.md
11
CHANGELOG.md
@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [[1.5.1]] - 2020-11-15
|
||||
### Updated
|
||||
- Minor version bump for bootstrap, node-sass, and fontawesome
|
||||
- Update to webpack 5 (brings better tree shaking, reduces fontawesome JS by 8K)
|
||||
|
||||
### Fixed
|
||||
- JSON-LD keyword formatting @jeremyrcampb #140
|
||||
|
||||
### Added
|
||||
- Ability to omit date in front matter @jeremyrcampb #141
|
||||
|
||||
## [[1.5.0]] - 2020-05-17
|
||||
### Updated
|
||||
- i18n language keys for German (#dermellor, #131)
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
3
assets/js/fontawesome.min.js
vendored
3
assets/js/fontawesome.min.js
vendored
File diff suppressed because one or more lines are too long
@ -15,7 +15,8 @@
|
||||
"dateModified": {{ .Date.Format $ISO8601 }},
|
||||
{{- end }}
|
||||
{{- /* all of the site's categories/tags, from Hugo's tpl/template_embedded.go */}}
|
||||
"keywords": {{ range $plural, $terms := .Site.Taxonomies }}{{ range $term, $val := $terms }}{{ printf "%s," $term }}{{ end }}{{ end }}
|
||||
{{- $keywords := slice }}{{ range $plural, $terms := .Site.Taxonomies }}{{ range $term, $val := $terms }}{{ $keywords = $keywords | append $term }}{{ end }}{{ end }}
|
||||
"keywords": {{ delimit $keywords ", " }}
|
||||
{{- with .Site.Params.description -}}
|
||||
,
|
||||
"description": {{- . -}}
|
||||
|
@ -56,7 +56,9 @@
|
||||
<article class="blog-post">
|
||||
<header>
|
||||
<h2 class="blog-post-title" dir="auto"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h2>
|
||||
<p class="blog-post-meta"><time {{ .Date.Format "2006-01-02T15:04:05Z07:00" | printf "datetime=%q" | safeHTMLAttr }}>{{ .Date.Format $dateFormat }}</time> {{ i18n "authoredBy" }} {{ .Params.author | default .Site.Params.author }}{{ if or (.Params.categories) (.Params.tags) }} {{ i18n "postedIn" }} {{ partial "meta-terms.html" . }}{{ end }}</p>
|
||||
<p class="blog-post-meta">
|
||||
{{ if not .PublishDate.IsZero }}<time {{ .Date.Format "2006-01-02T15:04:05Z07:00" | printf "datetime=%q" | safeHTMLAttr }}>{{ .Date.Format $dateFormat }}</time>{{ end }}
|
||||
{{ if or (.Params.categories) (.Params.tags) }} {{ i18n "postedIn" }} {{ partial "meta-terms.html" . }}{{ end }}</p>
|
||||
</header>
|
||||
{{ .Content }}
|
||||
|
||||
|
2315
package-lock.json
generated
2315
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
18
package.json
18
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "hugo-theme-bootstrap4-blog",
|
||||
"version": "1.5.0",
|
||||
"version": "1.5.1",
|
||||
"description": "A Bootstrap v4 theme for the Hugo static site generator.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -19,14 +19,14 @@
|
||||
"license": "CC-BY-3.0",
|
||||
"devDependencies": {
|
||||
"@chiiya/haven": "^0.6.0",
|
||||
"@fortawesome/fontawesome-svg-core": "^1.2.28",
|
||||
"@fortawesome/free-brands-svg-icons": "^5.13.0",
|
||||
"@fortawesome/free-solid-svg-icons": "^5.13.0",
|
||||
"bootstrap": "~4.5.0",
|
||||
"@fortawesome/fontawesome-svg-core": "^1.2.32",
|
||||
"@fortawesome/free-brands-svg-icons": "^5.15.1",
|
||||
"@fortawesome/free-solid-svg-icons": "^5.15.1",
|
||||
"bootstrap": "^4.5.3",
|
||||
"clean-css-cli": "^4.3.0",
|
||||
"node-sass": "^4.14.1",
|
||||
"rtlcss": "^2.5.0",
|
||||
"webpack": "^4.43.0",
|
||||
"webpack-cli": "^3.3.11"
|
||||
"node-sass": "^5.0.0",
|
||||
"rtlcss": "^2.6.1",
|
||||
"webpack": "^5.4.0",
|
||||
"webpack-cli": "^3.3.12"
|
||||
}
|
||||
}
|
||||
|
2
source/scss/bootstrap.scss
vendored
2
source/scss/bootstrap.scss
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* Bootstrap v4.5.0 (https://getbootstrap.com/)
|
||||
* Bootstrap v4.5.3 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2020 The Bootstrap Authors
|
||||
* Copyright 2011-2020 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
|
@ -9,7 +9,7 @@ min_version = 0.55
|
||||
|
||||
[author]
|
||||
name = "Alan Orth"
|
||||
homepage = "https://englishbulgaria.net"
|
||||
homepage = "https://picturingjordan.com"
|
||||
|
||||
[original]
|
||||
author = "mdo"
|
||||
|
Reference in New Issue
Block a user