annotate mrjunejune/src/parts/base_head.html @ 258:60a876c4587a

[ui] Add semantic primitive ownership Build a layered Zenbu token and sizing system, make authored controls use native-underneath primitives, migrate mrjunejune without imposing visual surfaces, and document/enforce HTML ownership in the catalog and wiki. Co-authored-by: Copilot <[email protected]>
author MrJuneJune <me@mrjunejune.com>
date Wed, 05 Aug 2026 05:25:40 -0700
parents 30c2196d03d4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
97
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 91
diff changeset
1 <meta charset="UTF-8">
3bdfffaad162 [MrJuneJune] Updated so it is mobile friendly and fixed few font sizes.
June Park <parkjune1995@gmail.com>
parents: 91
diff changeset
2 <meta name="viewport" content="width=device-width, initial-scale=1.0">
256
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 211
diff changeset
3 <meta name="theme-color" content="#f7f3e8">
91
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 85
diff changeset
4 <link rel="icon" type="image/svg+xml" href="/public/epi_all_colors.svg">
209
3b47e82ac57e [MrJuneJune] PWA updates.
MrJuneJune <me@mrjunejune.com>
parents: 146
diff changeset
5 <link rel="manifest" href="/public/manifest.json">
3b47e82ac57e [MrJuneJune] PWA updates.
MrJuneJune <me@mrjunejune.com>
parents: 146
diff changeset
6 <link rel="apple-touch-icon" href="/public/epi_all_colors.svg">
91
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 85
diff changeset
7
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 85
diff changeset
8 <link rel="preload" href="/public/fonts/Roboto-Regular.ttf" as="font" crossorigin>
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 85
diff changeset
9 <link rel="preload" href="/public/fonts/Roboto-Thin.ttf"as="font" crossorigin>
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 85
diff changeset
10
125
f236c895604e [MrJuneJune] Added web socket for chat to this.
June Park <parkjune1995@gmail.com>
parents: 97
diff changeset
11 <!-- <link rel="preload" href="/public/fonts/atkinson-regular.woff" as="font" type="font/woff" crossorigin> -->
f236c895604e [MrJuneJune] Added web socket for chat to this.
June Park <parkjune1995@gmail.com>
parents: 97
diff changeset
12 <!-- <link rel="preload" href="/public/fonts/atkinson-bold.woff" as="font" type="font/woff" crossorigin> -->
91
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 85
diff changeset
13
125
f236c895604e [MrJuneJune] Added web socket for chat to this.
June Park <parkjune1995@gmail.com>
parents: 97
diff changeset
14 <!-- <link rel="preload" href="/public/fonts/more-sugar.extras.otf" as="font" type="font/otf" crossorigin> -->
91
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 85
diff changeset
15 <link rel="preload" href="/public/fonts/more-sugar.regular.otf" as="font" type="font/otf" crossorigin>
19cccf6e866a Added Epi photo reels.
June Park <parkjune1995@gmail.com>
parents: 85
diff changeset
16 <link rel="preload" href="/public/fonts/more-sugar.thin.otf" as="font" type="font/otf" crossorigin>
146
8e56f800b7e4 Fixed small issues.
June Park <parkjune1995@gmail.com>
parents: 145
diff changeset
17 <link rel="preload" href="/public/epi_all_colors.svg" as="image">
81
37fc1ec888b6 [MrJuneJune] Separate out base_head.html
June Park <parkjune1995@gmail.com>
parents:
diff changeset
18
256
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 211
diff changeset
19 <link rel="stylesheet" href="/public/design-system/styles/tokens.css" />
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 211
diff changeset
20 <link rel="stylesheet" href="/public/design-system/styles/themes.css" />
85
0618addd5438 Updated so CSS and JS works for non root path.
June Park <parkjune1995@gmail.com>
parents: 84
diff changeset
21 <link rel="preload" href="/base.css" as="style" />
0618addd5438 Updated so CSS and JS works for non root path.
June Park <parkjune1995@gmail.com>
parents: 84
diff changeset
22 <link rel="stylesheet" href="/base.css" />
256
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 211
diff changeset
23 <link rel="stylesheet" href="/public/design-system/styles/components.css" />
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 211
diff changeset
24 <script
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 211
diff changeset
25 type="module"
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 211
diff changeset
26 src="/public/design-system/components/index.js"
30c2196d03d4 [site] Integrate Zenbu themes and components
MrJuneJune <me@mrjunejune.com>
parents: 211
diff changeset
27 ></script>
81
37fc1ec888b6 [MrJuneJune] Separate out base_head.html
June Park <parkjune1995@gmail.com>
parents:
diff changeset
28
209
3b47e82ac57e [MrJuneJune] PWA updates.
MrJuneJune <me@mrjunejune.com>
parents: 146
diff changeset
29 <script src="/public/pwa-register.js" defer></script>