1
0
mirror of https://github.com/alanorth/hugo-theme-bootstrap4-blog.git synced 2025-05-10 06:26:00 +02:00

15 Commits

Author SHA1 Message Date
dedf1bd62c package.json: Bump version to 1.2.1
It looks like I forgot to do this for a few releases.
2019-04-14 16:30:30 +03:00
ad29f240a2 CHANGELOG.md: Move unreleased changes to v1.2.1 2019-04-14 16:29:47 +03:00
b70b3684b6 CHANGELOG.md: Add unreleased changes 2019-04-14 16:27:02 +03:00
2916229d28 layouts: Update for Hugo 0.55.0
See: https://github.com/gohugoio/hugo/releases/tag/v0.55.0
2019-04-14 16:25:35 +03:00
3cced68d64 CHANGELOD.md: Accredit changes 2019-04-06 13:05:22 +03:00
1ff41d275d CHANGELOG.md: Add unreleased changes
Remove Google+ sharing support because the platform is being wound
down by Google.
2019-04-06 13:02:36 +03:00
f410c43eed Merge pull request #108 from bit33/removed-googleplus
Removed Google+ from sharing icons
2019-04-06 12:09:33 +03:00
08cf066111 Removed Google+ from sharing icons
Google+ is no longer available for consumers
2019-04-05 23:55:09 +02:00
fbb4b9f227 Add Dutch translation to unreleased changes 2019-03-13 09:29:37 +02:00
9613fcdeee Add Dutch translation 2019-03-13 09:27:20 +02:00
13b9552119 Add CHANGELOG.md 2019-02-13 18:43:13 +02:00
c079c28841 Regenerate assets 2019-02-13 18:40:55 +02:00
af05f26a36 Update to Bootstrap v4.3.1
See: https://blog.getbootstrap.com/2019/02/11/bootstrap-4-3-0/
2019-02-13 18:40:17 +02:00
09e29be817 Add package-lock.json 2018-12-19 13:18:56 +02:00
3b0a3a1ddc package.json: Update devDependencies
Synchronize with upstream, see:

https://github.com/twbs/bootstrap/blob/v4-dev/package.json
2018-12-19 13:18:04 +02:00
10 changed files with 1609 additions and 16 deletions

15
CHANGELOG.md Normal file
View File

@ -0,0 +1,15 @@
# Changelog
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.2.1] - 2019-04-14
### Added
- Dutch translation (@bit33)
- Remove Google+ icons (@bit33)
- Update templates for Hugo 0.55.0 (@aorth)
## [1.2.0] - 2019-02-13
### Updated
- Bootstrap v4.3.1

View File

@ -1,3 +1,3 @@
style = "sha384-6+EGfPoOzk/n2DVJSlglKT8TV1TgIMvVcKI73IZgBswLasPBn94KommV6ilJqCXE"
style = "sha384-G5B34w7DFTumWTswxYzTX7NWfbvQEg1HbFFEg6ItN03uTAAoS2qkPS/fu3LhuuSA"
cookieconsentcss = "sha384-6iYDyQZuuNT7DcPJGXx241czdv2+GDGUcXRiqw1iXrjgYMTorSetxFP3JCMQMwnR"
cookieconsentjs = "sha384-PDjg2ZdS3khPzd53i18+7tzB32JVQfFMrTXYo21RqPgUmEVAPwIhxOUF/8sP79CS"

38
i18n/nl.yaml Normal file
View File

@ -0,0 +1,38 @@
- id: about
translation: "Over ons"
- id: home
translation: "Home"
- id: recentPosts
translation: "Recente berichten"
- id: readMore
translation: "Lees verder →"
- id: translations
translation: "Vertalingen"
- id: share
translation: "Delen"
- id: paginatorPrevious
translation: "Vorige pagina"
- id: paginatorNext
translation: "Volgende pagina"
- id: cookieMessage
translation: "Deze website gebruikt cookies."
- id: cookieLink
translation: "Lees hier meer"
- id: cookieDismiss
translation: "OK"
- id: backToTop
translation: "Terug naar boven"
- id: links
translation: "Links"

View File

@ -15,10 +15,10 @@
{{ "<!-- combined, minified CSS -->" | safeHTML }}
<link href="{{ .Site.BaseURL }}css/style.css" rel="stylesheet"{{ if not .Site.Params.disable_sri }} integrity="{{ .Site.Data.sri.style}}" crossorigin="anonymous"{{ end }}>
{{ if .RSSLink }}
{{ "<!-- RSS 2.0 feed -->" | safeHTML }}
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
{{ end }}
{{ with .OutputFormats.Get "rss" -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
{{ template "_internal/google_analytics_async.html" . }}

View File

@ -16,6 +16,6 @@
<meta name="yandex-verification" content="{{ . }}" />
{{ end }}
{{- .Hugo.Generator -}}
{{- .Site.Hugo.Generator -}}
{{- /* vim: set ts=2 sw=2 et: */}}

View File

@ -2,7 +2,6 @@
<h4>{{ i18n "share" }}</h4>
<nav class="nav sharing-icons">
<a class="nav-item" href="https://www.facebook.com/sharer/sharer.php?u={{ .Permalink }}" title="Share on Facebook"><span class="fa fa-facebook fa-2x" aria-hidden="true"></span></a>
<a class="nav-item" href="https://plus.google.com/share?url={{ .Permalink }}" title="Share on Google+"><span class="fa fa-google-plus fa-2x" aria-hidden="true"></span></a>
<a class="nav-item" href="https://www.linkedin.com/shareArticle?mini=true&amp;url={{ .Permalink }}" title="Share on LinkedIn"><span class="fa fa-linkedin fa-2x" aria-hidden="true"></span></a>
<a class="nav-item" href="https://twitter.com/home?status={{ .Permalink }}" title="Tweet this"><span class="fa fa-twitter fa-2x"></span></a>
</nav>

1539
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "hugo-theme-bootstrap4-blog",
"version": "1.1.7",
"version": "1.2.1",
"description": "A Bootstrap v4 theme for the Hugo static site generator.",
"repository": {
"type": "git",
@ -18,10 +18,10 @@
"author": "Alan Orth",
"license": "CC-BY-3.0",
"devDependencies": {
"bootstrap": "4.1.3",
"bootstrap": "~4.3.1",
"clean-css-cli": "^4.2.1",
"cookieconsent": "3.0.4",
"font-awesome": "^4.7.0",
"node-sass": "^4.9.3"
"node-sass": "^4.11.0"
}
}

View File

@ -1,7 +1,7 @@
/*!
* Bootstrap v4.1.3 (https://getbootstrap.com/)
* Copyright 2011-2018 The Bootstrap Authors
* Copyright 2011-2018 Twitter, Inc.
* Bootstrap v4.3.1 (https://getbootstrap.com/)
* Copyright 2011-2019 The Bootstrap Authors
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
@ -34,9 +34,11 @@
//@import "node_modules/bootstrap/scss/media";
//@import "node_modules/bootstrap/scss/list-group";
//@import "node_modules/bootstrap/scss/close";
//@import "node_modules/bootstrap/scss/toasts";
//@import "node_modules/bootstrap/scss/modal";
//@import "node_modules/bootstrap/scss/tooltip";
//@import "node_modules/bootstrap/scss/popover";
//@import "node_modules/bootstrap/scss/carousel";
//@import "node_modules/bootstrap/scss/spinners";
@import "node_modules/bootstrap/scss/utilities";
@import "node_modules/bootstrap/scss/print";

File diff suppressed because one or more lines are too long