diff --git a/assets/scss/partials/article.scss b/assets/scss/partials/article.scss
index e2c05a4..6c2feb1 100644
--- a/assets/scss/partials/article.scss
+++ b/assets/scss/partials/article.scss
@@ -131,6 +131,7 @@
.article-tags {
display: flex;
gap: 10px;
+ flex-wrap: wrap;
a {
color: var(--accent-color-text);
diff --git a/assets/scss/partials/layout/article.scss b/assets/scss/partials/layout/article.scss
index 54c69eb..10e2706 100644
--- a/assets/scss/partials/layout/article.scss
+++ b/assets/scss/partials/layout/article.scss
@@ -67,7 +67,6 @@
}
.article-tags {
- flex-wrap: wrap;
text-transform: unset;
}
@@ -232,6 +231,10 @@
width: var(--card-padding);
text-align: center;
color: var(--accent-color);
+
+ &:before {
+ content: "#";
+ }
}
&:hover,
diff --git a/config.yaml b/config.yaml
index ece0ecb..b1a0bff 100644
--- a/config.yaml
+++ b/config.yaml
@@ -28,6 +28,7 @@ params:
src: img/avatar.png
article:
+ headingAnchor: false
math: false
toc: true
readingTime: true
diff --git a/exampleSite/hugo.yaml b/exampleSite/hugo.yaml
index 433755b..cf9a4ba 100644
--- a/exampleSite/hugo.yaml
+++ b/exampleSite/hugo.yaml
@@ -156,6 +156,7 @@ params:
repo:
clientID:
clientSecret:
+ proxy:
cusdis:
host:
diff --git a/i18n/bg.yaml b/i18n/bg.yaml
new file mode 100644
index 0000000..cf64a56
--- /dev/null
+++ b/i18n/bg.yaml
@@ -0,0 +1,73 @@
+toggleMenu:
+ other: Покажи Меню
+
+darkMode:
+ other: Тъмен Режим
+
+list:
+ page:
+ one: "{{ .Count }} страница"
+ other: "{{ .Count }} страници"
+
+ section:
+ other: Секция
+
+ subsection:
+ one: Подсекция
+ other: Подсекции
+
+article:
+ back:
+ other: Назад
+
+ tableOfContents:
+ other: Съдържание
+
+ relatedContent:
+ other: Свързано Съдържание
+
+ lastUpdatedOn:
+ other: Последна промяна на
+
+ readingTime:
+ one: "{{ .Count }} minute read"
+ other: "{{ .Count }} minute read"
+
+notFound:
+ title:
+ other: Не е намерено
+
+ subtitle:
+ other: Страницата която търсите не е открита
+
+widget:
+ archives:
+ title:
+ other: Архиви
+
+ more:
+ other: Повече
+
+ tagCloud:
+ title:
+ other: Тагове
+ categoriesCloud:
+ title:
+ other: Категории
+
+search:
+ title:
+ other: Търсене
+
+ placeholder:
+ other: Напишете нещо...
+
+ resultTitle:
+ other: "#PAGES_COUNT страници (#TIME_SECONDS секунди)"
+
+footer:
+ builtWith:
+ other: Създадено с {{ .Generator }}
+
+ designedBy:
+ other: Тема {{ .Theme }} създадена от {{ .DesignedBy }}
diff --git a/i18n/oc.yaml b/i18n/oc.yaml
new file mode 100644
index 0000000..1415350
--- /dev/null
+++ b/i18n/oc.yaml
@@ -0,0 +1,72 @@
+toggleMenu:
+ other: Alternar menú
+
+darkMode:
+ other: Mòde fosc
+
+list:
+ page:
+ one: "{{ .Count }} pagina"
+ other: "{{ .Count }} paginas"
+
+ section:
+ other: Seccion
+
+ subsection:
+ one: Josseccion
+ other: Josseccions
+
+article:
+ back:
+ other: Tornar
+
+ tableOfContents:
+ other: Taula de contengut
+
+ relatedContent:
+ other: Contenguts relacionats
+
+ lastUpdatedOn:
+ other: Darrièra actualizacion
+ readingTime:
+ one: "{{ .Count }} minuta de lectura"
+ other: "{{ .Count }} minutas de lectura"
+
+notFound:
+ title:
+ other: Non trobat
+
+ subtitle:
+ other: Aquesta pagina existís pas
+
+widget:
+ archives:
+ title:
+ other: Archiu
+
+ more:
+ other: Mai
+
+ tagCloud:
+ title:
+ other: Etiquetas
+ categoriesCloud:
+ title:
+ other: Categorias
+
+search:
+ title:
+ other: Cercar
+
+ placeholder:
+ other: Picatz quicòm...
+
+ resultTitle:
+ other: "#PAGES_COUNT paginas dins (#TIME_SECONDS segons)"
+
+footer:
+ builtWith:
+ other: Creat amb {{ .Generator }}
+
+ designedBy:
+ other: Tàma {{ .Theme }} concebut per {{ .DesignedBy }}
diff --git a/layouts/_default/_markup/render-heading.html b/layouts/_default/_markup/render-heading.html
index af79692..f79308a 100644
--- a/layouts/_default/_markup/render-heading.html
+++ b/layouts/_default/_markup/render-heading.html
@@ -1,4 +1,6 @@