|
| 1 | +# CoderLevelUp — 2026 Site Update Plan |
| 2 | + |
| 3 | +## Context |
| 4 | + |
| 5 | +This is the Jekyll source for [coderlevelup.org](https://coderlevelup.org), built on the Jasper2 theme (Ghost Casper port), deployed via GitHub Actions to GitHub Pages. |
| 6 | + |
| 7 | +The site is being updated to reflect CoderLevelUp's current portfolio of initiatives. The tagline stays: **"Levelling up our coding community, in Africa."** |
| 8 | + |
| 9 | +All initiative background is in `content-strategy/initiatives/`. Read the relevant file before writing any post or tag page. |
| 10 | + |
| 11 | +> **Note for Claude Code:** `content-strategy/` is excluded from Jekyll builds via `_config.yml`. If that exclude entry is missing, add it before doing anything else. |
| 12 | +
|
| 13 | +--- |
| 14 | + |
| 15 | +## _config.yml — Check First |
| 16 | + |
| 17 | +Ensure this is in the exclude list: |
| 18 | + |
| 19 | +```yaml |
| 20 | +exclude: |
| 21 | + - content-strategy/ |
| 22 | +``` |
| 23 | +
|
| 24 | +--- |
| 25 | +
|
| 26 | +## Task 1 — Update `_data/tags.yml` |
| 27 | + |
| 28 | +Add entries for all new tags. Follow the existing format exactly. Each tag needs: |
| 29 | + |
| 30 | +- `slug` — matches the tag used in post frontmatter |
| 31 | +- `name` — display name |
| 32 | +- `description` — 1–2 sentence summary shown on the tag page |
| 33 | +- `cover` — path to cover image (placeholder: `assets/images/covers/[slug].jpg` if not yet available) |
| 34 | + |
| 35 | +**Full tag list:** |
| 36 | + |
| 37 | +| Slug | Name | Status | |
| 38 | +|---|---|---| |
| 39 | +| `codeclub` | Code Club | existing — add description if missing | |
| 40 | +| `coolestprojects` | Coolest Projects | existing — add description if missing | |
| 41 | +| `pico-pathway` | Pico Pathway | NEW | |
| 42 | +| `first` | FIRST | NEW | |
| 43 | +| `ftc` | FTC | NEW | |
| 44 | +| `sapient-rocks` | SAPIENT | NEW | |
| 45 | +| `mars-yard` | Mars Yard | NEW | |
| 46 | +| `loco-auv` | LoCO AUV | NEW | |
| 47 | +| `coderetreat` | CodeRetreat | existing — add description if missing | |
| 48 | +| `devdev` | devdev | existing — add description if missing | |
| 49 | + |
| 50 | +--- |
| 51 | + |
| 52 | +## Task 2 — Create Tag About Pages |
| 53 | + |
| 54 | +For each tag, create a page at `tag/[slug].html` using the layout and frontmatter convention already in use for existing tag pages. Check existing ones before writing new ones. |
| 55 | + |
| 56 | +Typical pattern: |
| 57 | + |
| 58 | +```yaml |
| 59 | +--- |
| 60 | +layout: tag |
| 61 | +tag: ftc |
| 62 | +title: "FTC" |
| 63 | +description: "..." |
| 64 | +cover: assets/images/covers/ftc.jpg |
| 65 | +permalink: /tag/ftc/ |
| 66 | +--- |
| 67 | +``` |
| 68 | + |
| 69 | +Create one for every tag in the list above that doesn't already have one. |
| 70 | + |
| 71 | +--- |
| 72 | + |
| 73 | +## Task 3 — Create New Posts |
| 74 | + |
| 75 | +One introductory post per new initiative minimum. Posts live in `_posts/` with filename `YYYY-MM-DD-slug.md`. |
| 76 | + |
| 77 | +Check existing posts for frontmatter conventions before writing. Typical pattern: |
| 78 | + |
| 79 | +```yaml |
| 80 | +--- |
| 81 | +layout: post |
| 82 | +current: post |
| 83 | +cover: assets/images/covers/ftc.jpg |
| 84 | +navigation: True |
| 85 | +title: "Post Title" |
| 86 | +date: 2026-03-01 10:00:00 |
| 87 | +tags: [ftc, first] |
| 88 | +class: post-template |
| 89 | +subclass: 'post tag-ftc' |
| 90 | +author: campey |
| 91 | +--- |
| 92 | +``` |
| 93 | + |
| 94 | +**Posts to create:** |
| 95 | + |
| 96 | +| Initiative | Brief | |
| 97 | +|---|---| |
| 98 | +| Pico Pathway | `content-strategy/initiatives/pico-pathway.md` | |
| 99 | +| FIRST | `content-strategy/initiatives/first.md` | |
| 100 | +| FTC | `content-strategy/initiatives/ftc.md` | |
| 101 | +| SAPIENT | `content-strategy/initiatives/sapient-rocks.md` | |
| 102 | +| Mars Yard | `content-strategy/initiatives/mars-yard.md` | |
| 103 | +| LoCO AUV | `content-strategy/initiatives/loco-auv.md` | |
| 104 | + |
| 105 | +--- |
| 106 | + |
| 107 | +## Task 4 — Update the About Page |
| 108 | + |
| 109 | +File: `about/index.html` or `about/index.md` — check what exists. |
| 110 | + |
| 111 | +See `content-strategy/initiatives/about.md` for full updated content brief. |
| 112 | + |
| 113 | +--- |
| 114 | + |
| 115 | +## Task 5 — Landing Page Ordering |
| 116 | + |
| 117 | +The landing page surfaces the most recent posts. Set post dates to achieve this audience journey top-to-bottom: |
| 118 | + |
| 119 | +1. Code Club / kids coding |
| 120 | +2. Coolest Projects |
| 121 | +3. Pico Pathway Kit |
| 122 | +4. FTC — volunteering angle |
| 123 | +5. SAPIENT — Mars Yard & lectures |
| 124 | +6. LoCO AUV — community builds |
| 125 | +7. CodeRetreat |
| 126 | +8. devdev |
| 127 | + |
| 128 | +--- |
| 129 | + |
| 130 | +## Repo Conventions |
| 131 | + |
| 132 | +- Primary author: `campey` (defined in `_data/authors.yml`) |
| 133 | +- Read existing posts before writing new ones — follow their frontmatter patterns exactly |
| 134 | +- Check `_data/tags.yml` before adding tags — avoid duplication |
| 135 | +- Cover images: `assets/images/` — use descriptive filenames |
| 136 | +- Do not modify `.travis.yml` — CI is now GitHub Actions (`.github/workflows/`) |
| 137 | +- Verify locally with `bundle exec jekyll serve` before committing |
0 commit comments