File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 - name : Checkout repository
1818 uses : actions/checkout@v4
1919
20+ - name : Set up Python
21+ uses : actions/setup-python@v4
22+ with :
23+ python-version : ' 3.x'
24+
25+ - name : Install MkDocs and theme
26+ run : |
27+ python -m pip install --upgrade pip
28+ pip install mkdocs mkdocs-material
29+
30+ - name : Build MkDocs site
31+ run : mkdocs build --site-dir site
32+
2033 - name : Deploy to gh-pages branch
2134 uses : peaceiris/actions-gh-pages@v3
2235 with :
Original file line number Diff line number Diff line change 1+ site_name: Code without Barriers 💻💞 with Microsoft
2+ theme:
3+ name: material
4+ palette:
5+ primary: indigo
6+ accent: deep purple
7+ font:
8+ text: Roboto
9+ code: Roboto Mono
10+ nav:
11+ - Home: index.md
12+ - Welcome: welcome.md
13+ - Mindset Shift: mindset.md
14+ - Copilot as Teacher: copilot-teacher.md
15+ - Copilot as Pair Programmer: copilot-pair.md
16+ - Copilot as Enabler: copilot-enabler.md
17+ - Code Demos: demos/5ways.py
18+ - Wrap-Up & Resources: wrapup.md
19+
20+ # Extra
21+ extra:
22+ social:
23+ - icon: fontawesome/brands/github
24+ link: https://github.com/codess-aus
25+ - icon: fontawesome/brands/twitter
26+ link: https://bsky.app/profile/codess-aus.bsky.social
27+ - icon: fontawesome/brands/linkedin
28+ link: https://www.linkedin.com/in/michellesandford
29+
You can’t perform that action at this time.
0 commit comments