Skip to content

Commit b9b00ff

Browse files
authored
Merge pull request #3 from codess-aus/import-uncommitted-202509131744
Import uncommitted workspace changes for review
2 parents 2e812f7 + 0033794 commit b9b00ff

2 files changed

Lines changed: 42 additions & 0 deletions

File tree

.github/workflows/deploy-pages.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,19 @@ jobs:
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:

mkdocs.yml.bak.20250913173433

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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+

0 commit comments

Comments
 (0)