Una plantilla de repositorio para una página HTML estática simple basada en HTML5 Boilerplate y utilizando CSS de viento de cola para un estilo flexible. Ideal para llegar pronto y en las páginas de destino. Fácilmente desplegable para páginas GitHub o cualquier otro host de sitio estático.
Haga clic en el botón "Use esta plantilla" en la parte superior de la página principal del repositorio en GitHub. Edite el contenido de index.html y/o main.js y despliegue en su host estático favorito siguiendo los pasos en la implementación a continuación.
Para un acceso rápido, también puede ir a https://github.com/besublime/tailwind-parcel-static-starter/generate
Once your repository is created and cloned to your local environment, be sure to run npm install
to install dependencies before continuing.
From the terminal, run npm run dev
to start up a simple server (using Parcel) which will monitor index.html (and any JS/CSS contained within it) and reload automatically when changes are made.
To deploy to GitHub pages, enable github pages in your repository's settings, and select the /docs
directory as the source.
To update the published GitHub pages site, run npm run build
, then commit and push the changes to the remote repository. (This command uses parcel to compile the css, bundle any scripts, and output everything to the /docs
directory.)
Para implementar en otras plataformas de sitio estático, siga las instrucciones proporcionadas por el host. The build command in package.json
can be updated to output to any directory by changing the --dist-dir
parameter.