Un tema minimalista de Hugo con Tailwind CSS
Toigian
-Tối giản
(vietnamita): Minimalista (inglés)Descargo de responsabilidad : no soy un desarrollador front-end, solo un tipo al que le gusta modificar cosas, por lo que es posible que mi código no sea bonito/limpio. Intento aprender Tailwind CSS y el resultado es hugo-toigian.
Estas capturas de pantalla pueden estar desactualizadas. Eche un vistazo al sitio de demostración para conocer las últimas novedades.
Oscuro | Luz |
---|---|
tối giản
). Muy inspirado en mellow.dev.git
, npm
instalado.snap install hugo --channel=extended
postcss-cli
esté instalado en el entorno ( npm install -g postcss postcss-cli
) junto con cualquier complemento PostCSS utilizado (por ejemplo, npm install -g autoprefixer
). Si está utilizando el paquete Hugo Snap, PostCSS y los complementos deben instalarse localmente dentro del directorio de su sitio Hugo, por ejemplo, npm install postcss-cli
sin el indicador -g. hugo new site hugo-example-site
cd hugo-example-site
git init
git submodule add https://github.com/ntk148v/hugo-toigian.git themes/hugo-toigian
cd themes/hugo-toigian
npm install
config.toml
en el directorio raíz de su sitio web Hugo. theme = " hugo-toigian "
hugo server -DF --disableFastRender
hugo --environment production --minify
Hay algunas opciones de configuración que puede agregar al archivo config.toml.
baseURL = ' http://example.org/ '
languageCode = ' en-us '
title = ' Toigian '
theme = " hugo-toigian "
themesDir = " ../.. "
# (Optional) If you provide a Disqus shortname, comments will be enabled on
# all pages.
# disqusShortname = "my-site"
[ params ]
# (Optional, default true): Controls table of contents visibility on right side of pages.
# Start and end levels can be controlled with markup.tableOfContents setting.
toc = true
# (Optional, default true) Enables comments template on pages
# By default partials/docs/comments.html includes Disqus template
# See https://gohugo.io/content-management/comments/#configure-disqus
# Can be overwritten by same param in page frontmatter
comments = true
[ params . author ]
name = " Kien Nguyen-Tuan "
email = " [email protected] "
[ markup ]
defaultMarkdownHandler = " goldmark "
# By default, Goldmark trims unsafe outputs which might prevent some shortcodes from rendering.
# It is recommended to set markup.goldmark.renderer.unsafe=true if you encounter problems.
[ markup . goldmark ]
[ markup . goldmark . renderer ]
unsafe = true # Enable user to embed HTML snippets in Markdown content.
[ markup . highlight ]
codeFences = true
guessSyntax = true
lineNos = false
noClasses = false
tabWidth = 4
[ markup . tableOfContents ]
startLevel = 2
endLevel = 4
ordered = true
# The left side navbar at the top
[ menu ]
[[ menu . nav ]]
name = " About "
url = " /about "
weight = 2
[[ menu . nav ]]
name = " Posts "
url = " /posts "
weight = 3
Puede especificar parámetros adicionales en la portada de páginas individuales.
# Your posts tags
tags = [ ]
# If you have enabled comments for the site, you can disable it for specific pages
comment = true
Consulte los códigos cortos.
layouts/partials/
.vacío parcial | Colocación | Uso |
---|---|---|
layouts/partials/custom/head.html | Antes de cerrar la etiqueta <head> | Agregar css/js personalizado |
layouts/partials/custom/content-before.html | Antes del contenido de la página | |
layouts/partials/custom/content-after.html | Después del contenido de la página | |
layouts/partials/font.html | Importar fuentes personalizadas |
Archivo | Descripción |
---|---|
assets/css/custom.css | Personalizar o anular estilos CSS |
Por ejemplo, si no te gusta la fuente elegida (Inconsolata) y quieres usar tu propia elección, sigue estos pasos:
layouts/partials/font.html
para importar tus fuentes: <!-- load Inter and Overpass fonts -->
< link rel =" preconnect " href =" https://fonts.googleapis.com " />
< link rel =" preconnect " href =" https://fonts.gstatic.com " crossorigin />
< link
href =" https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Overpass:wght@400;500&display=swap "
rel =" stylesheet "
/>
assets/css/custom.css
: // change the default mono font to Overpass
:root {
--font-mono : " Overpass " ;
--font-serif : " Inter " ;
}
Como ya sabes, no soy desarrollador front-end. Por lo tanto, si encuentra algún problema o desea mejorarlo, no dude en abrir una solicitud de edición o extracción.
Los objetivos principales son:
No dude en abrir problemas si encuentra que faltan opciones de configuración o personalización.