The layout and theme of https://code-input-js.org [contribute here or on https://github.com/WebCoder49/website]
Find a file
2025-11-15 18:42:21 +00:00
archetypes Create Hugo site 2025-07-31 15:56:38 +01:00
assets Enable Cmd+F in playground 2025-11-15 18:12:24 +00:00
layouts/_shortcodes Fix links to playground code and add description to playground HTML file 2025-11-15 18:42:21 +00:00
themes/code-input-js Make versions consistent in header links; Improve header logo alt text 2025-11-01 23:23:16 +00:00
.gitignore Create Hugo site 2025-07-31 15:56:38 +01:00
.hugo_build.lock Create Hugo site 2025-07-31 15:56:38 +01:00
.yarnrc.yml Add confirmation to run playground with CDN; Complete for deployment 2025-11-01 22:21:25 +00:00
hugo.toml Add confirmation to run playground with CDN; Complete for deployment 2025-11-01 22:21:25 +00:00
LICENSE Initial commit 2025-07-30 10:42:16 +01:00
LICENSE.CC-BY-SA-4.0 Initial commit 2025-07-30 10:42:16 +01:00
LICENSE.CC0-1.0 Initial commit 2025-07-30 10:42:16 +01:00
LICENSE.MIT Initial commit 2025-07-30 10:42:16 +01:00
package.json Add confirmation to run playground with CDN; Complete for deployment 2025-11-01 22:21:25 +00:00
README.md Fix README.md run instructions 2025-11-01 23:26:47 +00:00
yarn.lock Add confirmation to run playground with CDN; Complete for deployment 2025-11-01 22:21:25 +00:00

code-input-js.org layout code

This contains the layout and theme of the website, while the docs directory of the code-input library itself contains the content.

Run the website

  • Install Hugo
  • git clone this repository
  • cd into the repository
  • npm install or yarn install
  • Transfer libraries to the right place: mkdir assets/ ; mkdir assets/lib/ ; rm -rf assets/lib/* ; mv node_modules/* assets/lib/ (errors about the directory already existing are fine)
  • Transfer content to the right place: mkdir content/ ; rm -rf content/* ; mv assets/lib/@webcoder49/code-input/docs/* content/ ; rm content/README.md (errors about the directory already existing are fine)
  • Run/build normally with Hugo: hugo server to test