Compare commits

..

6 Commits

Author SHA1 Message Date
Mark Dumay
5a6a662eb0 Merge pull request #68 from markdumay/develop
Fixes
2022-12-05 09:06:01 +01:00
mark
d32dd7ec26 Bump version 2022-12-05 08:53:02 +01:00
mark
ff355a56d5 Fix #63 2022-12-05 08:52:54 +01:00
mark
a76b5f34c8 Fix #64 2022-12-05 08:44:15 +01:00
mark
d7cffa69da Fix #66 2022-12-05 08:42:26 +01:00
Mark Dumay
bb24bd4e5e Merge pull request #67 from markdumay/main
Synchronize branch
2022-12-05 08:38:08 +01:00
5 changed files with 6 additions and 6 deletions

View File

@@ -136,7 +136,7 @@ Write-Host 'Goodbye from PowerShell!'
### SQL
Geef `sql` op als waarde voor het argument `shell` om een SQL terminal te simuleren. Gebruik `\` als markering van een bijbehorende regel.
Geef `sql` op als waarde voor het argument `shell` om een SQL terminal te simuleren. Gebruik `(con)` als markering van een bijbehorende regel.
```html
{{%/* command prompt="mysql>" shell="sql" */%}}

View File

@@ -88,7 +88,7 @@
# Table of contents
- id: toc
translation: "What's on this Page"
translation: "On this page"
# Search
- id: ui_search

View File

@@ -6,8 +6,8 @@
<div class="row row-cols-1 row-cols-sm-3 align-items-center p-3">
<div class="col col-md-2 d-none d-md-block"></div>
<div class="col col-sm-12 col-md-8">
{{ range .Params.tags -}}
<a class="btn btn-light btn-sm" href="{{ $.Site.BaseURL }}tags/{{ . | urlize }}" role="button">{{ . }}</a>
{{ range (.GetTerms "tags") -}}
<a class="btn btn-light btn-sm" href="{{ (path.Join .Page.RelPermalink) | relURL }}" role="button">{{ .LinkTitle }}</a>
{{ end -}}
<h1>{{ .Title }}</h1>

View File

@@ -1,7 +1,7 @@
{{ $items := len (findRE "<li.*?>(.|\n)*?</li>" .TableOfContents) -}}
{{ if (gt $items 1) -}}
<div class="mt-4 mb-5 my-md-0 ps-xl-3 mb-lg-5 text-muted sticky-top toc d-none d-lg-block">
<strong class="d-block h6 my-2 pb-2 border-bottom">On this page</strong>
<strong class="d-block h6 my-2 pb-2 border-bottom">{{ T "toc" }}</strong>
{{ .TableOfContents }}
</div>
{{ end -}}

View File

@@ -1,6 +1,6 @@
{
"name": "@markdumay/hugo-theme-hinode",
"version": "0.6.0",
"version": "0.6.1",
"description": "Hinode is a clean blog theme for Hugo, an open-source static site generator",
"main": "index.js",
"publishConfig": {