Only Automaducks Team members can contribute to the repository!
The team website code resides in this repository and is hosted through Github Pages as a Jekyll plugin. You can look at Github Pages with Jekyll for more information.
This means that after the initial setup, the team can easily add or modify content using Markdown markup language, which is much simpler that HTML (this page is written in Markdown).
Try using markdown online: Stack Edit
Clone the repository locally and open it in VSCode:
# Clone the Repository
cd
cd .\Repos
git clone https://github.com/FTC-23206/.github.git automaducks-home
# Open in VSCode
cd .\automaducks-home
code .|
| docs # WebSite code
| | _data
| | | navigation.yml # Navigation Menu
| |
| | pages # WebSite Pages (Change navigation when adding new pages)
| | | odometry.md # Sample page started for the team odometry
| |
| | _posts
| | | design # New files added here automatically show up as blog entries
| | | | 2023-07-10-title.md
- Make a copy of
2023-01-01-template.md - Change the date and title on the filename
- Update the header (front matter) with the entry data
- Add your content to the page (Use VSCode markdown preview to preview your content)
- Submit a pull-request
See https://jekyllrb.com/docs/posts/ for more information.
- Make a copy of odometry.md
- Rename the file
- Add you content to the page (Use VSCode markdown preview to preview your content)
- Update the navigation.yml
- Submit a pull request
It is much more convenient to render the website locally prior submitting a pull request when making large changes. This requires Jekyll to be installed locally. See https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll for instructions.