Skip to content

golang-vietnam/geeky.vn

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Geeky.vn

System requirement

  • Node.js
  • Make
  • A text editor that supports Markdown

Project Structure

├── css
│   └── theme.css
├── generator.js
├── img
├── js
├── Makefile
├── README.md
├── src
│   ├── get-involved.md
│   ├── how-we-do.md
│   ├── index.md
│   ├── legacy.md
│   └── what-we-do.md
└── template.html

All of the pages source code are stored in markdown format within src folder.

Manage Pages

To manage which page to be shown on the main menu. Edit the pages array in generator.js.

let pages = [
  { name: 'About Us', slug: 'index'},
  { name: 'What we do?', slug: 'what-we-do'},
  { name: 'How we do it?', slug: 'how-we-do'},
  { name: 'Get involved', slug: 'get-involved'},
  { name: 'Wanna hack?', slug: 'legacy'}
];

How to edit

To edit pages content, please fork this repo and make changes in the markdown files.

Finally, generate the HTML pages for publishing:

$ make

About

The source code of geeky.vn site

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 60.1%
  • JavaScript 24.4%
  • HTML 15.2%
  • Makefile 0.3%