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 a1e3829..9e710b2 100644
--- a/exampleSite/hugo.yaml
+++ b/exampleSite/hugo.yaml
@@ -156,6 +156,7 @@ params:
repo:
clientID:
clientSecret:
+ proxy:
cusdis:
host:
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 @@