terminal hugo theme
1.1.2
Un tema para hugo creado con la biblioteca CSS tailwind y la familia de fuentes mono
https://nayanseth.com
tailwind.css
existente se utilizará en el tema, pero si quieres jugar con tailwind, sigue los pasos que se mencionan a continuación.assets/csss/tailwind
npm run dev
-> Esto genera todas las clases CSS posibles a partir de tailwind. Es posible que algunos todavía queden fueranpm run prod
-> Esto genera solo las clases CSS de tailwind que estás usando en el temahugo new site <SITE_NAME>
cd <SITE_NAME>
git submodule add [email protected]:techbarrack/terminal-hugo-theme.git themes/terminal
<SITE_NAME>/hugo.yaml
con <SITE_NAME>/themes/terminal/hugo.yaml
mkdir -p layouts/partials/third_party_js
. Este directorio es para almacenar cualquier tipo de JavaScript de terceros como Google Analytics, Disqus, etc.hugo server --buildDrafts --disableFastRender --gc --ignoreCache --noHTTPCache --forceSyncStatic --verbose -w
<SITE_NAME>/hugo.yaml
<SITE_NAME>/content
replicando lo que está presente en <SITE_NAME>/themes/terminal/content
head.html
<SITE_NAME>/layouts/partials/third_party_js/<FILE>.html
third_party_js
se incluirán antes de la etiqueta </body>
{{< svg logo="blah" >}}
-> Utilice el siguiente código para agregar svg en archivos de rebajaslayouts/content/svg
{{< rawhtml >}}
<div>This is raw HTML content</div>
{{< /rawhtml >}}
Algunos enlaces de referencia para obtener información adicional sobre cómo hacer cosas en Hugo: