-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
234 lines (229 loc) · 11.1 KB
/
Copy pathportfolio.html
File metadata and controls
234 lines (229 loc) · 11.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!--
******************************************************
* RECALL COMPILED OUTPUT
* SOURCE: (embedded below)
* RECALL VERSION: 0.1
******************************************************
* IDENTIFICATION DIVISION.
* PROGRAM-ID. RECALL-PORTFOLIO.
* AUTHOR. SEMANTICINTENT.
* DATE-WRITTEN. 2026-04-03.
* PAGE-TITLE. "The Source That Remembers".
* DESCRIPTION. "RECALL language — built different.".
*
* ENVIRONMENT DIVISION.
* COPY FROM "theme.rcl".
*
* DATA DIVISION.
* WORKING-STORAGE SECTION.
* 01 HERO-HEADING PIC X(60) VALUE "STILL HERE. STILL RUNNING.".
* 01 HERO-SUBTEXT PIC X(120) VALUE "RECALL is a declarative web interface language with COBOL-inspired syntax. The source is the artifact.".
* 01 CTA-LABEL PIC X(20) VALUE "VIEW THE SPEC".
* 01 CTA-HREF PIC X(80) VALUE "#spec".
* 01 FOOTER-TEXT PIC X(80) VALUE "COMPILED WITH RECALL 0.1. THE SOURCE IS EMBEDDED ABOVE.".
*
* ITEMS SECTION.
* 01 NAV-ITEMS.
* 05 NAV-ITEM-1 PIC X(20) VALUE "ABOUT".
* 05 NAV-ITEM-1-HREF PIC X(80) VALUE "#about".
* 05 NAV-ITEM-2 PIC X(20) VALUE "SPEC".
* 05 NAV-ITEM-2-HREF PIC X(80) VALUE "#spec".
* 05 NAV-ITEM-3 PIC X(20) VALUE "GITHUB".
* 05 NAV-ITEM-3-HREF PIC X(80) VALUE "https://github.com/semanticintent/recall".
*
* 01 PRINCIPLE-ITEMS.
* 05 PRINCIPLE-1.
* 10 PROJ-TITLE PIC X(60) VALUE "THE SOURCE IS THE ARTIFACT".
* 10 PROJ-DESC PIC X(200) VALUE "Every compiled .html file embeds its .rcl source in a comment block. View source to see the origin.".
* 10 PROJ-TAG PIC X(20) VALUE "CORE PRINCIPLE".
* 10 PROJ-HREF PIC X(80) VALUE "#spec".
* 05 PRINCIPLE-2.
* 10 PROJ-TITLE PIC X(60) VALUE "NO DEPENDENCIES".
* 10 PROJ-DESC PIC X(200) VALUE "Output is a single HTML file. Inline CSS. Vanilla JS where needed. Zero external links.".
* 10 PROJ-TAG PIC X(20) VALUE "ZERO DEPS".
* 10 PROJ-HREF PIC X(80) VALUE "#spec".
* 05 PRINCIPLE-3.
* 10 PROJ-TITLE PIC X(60) VALUE "VERBOSE IS A FEATURE".
* 10 PROJ-DESC PIC X(200) VALUE "COBOL's English-like verbosity is intentional legibility. The source reads like a document.".
* 10 PROJ-TAG PIC X(20) VALUE "PHILOSOPHY".
* 10 PROJ-HREF PIC X(80) VALUE "#spec".
*
* PROCEDURE DIVISION.
*
* RENDER-NAV.
* DISPLAY NAVIGATION USING NAV-ITEMS
* WITH STICKY YES
* WITH LOGO "RECALL".
* STOP SECTION.
*
* RENDER-HERO.
* DISPLAY SECTION ID "hero"
* WITH LAYOUT CENTERED
* WITH PADDING LARGE.
* DISPLAY HEADING-1 HERO-HEADING
* WITH STYLE MONO.
* DISPLAY PARAGRAPH HERO-SUBTEXT
* WITH COLOR MUTED.
* DISPLAY BUTTON CTA-LABEL
* ON-CLICK GOTO CTA-HREF
* WITH STYLE PRIMARY.
* STOP SECTION.
*
* RENDER-PRINCIPLES.
* DISPLAY SECTION ID "spec"
* WITH LAYOUT STACK
* WITH PADDING MEDIUM.
* DISPLAY LABEL "DESIGN PRINCIPLES".
* DISPLAY HEADING-2 "What RECALL believes".
* DISPLAY CARD-LIST USING PRINCIPLE-ITEMS
* WITH STYLE BORDERED
* WITH COLUMNS 3
* WITH HOVER-LIFT YES.
* STOP SECTION.
*
* RENDER-FOOTER.
* DISPLAY FOOTER
* WITH TEXT FOOTER-TEXT
* WITH ALIGN CENTER.
* STOP SECTION.
*
* STOP RUN.
*
******************************************************
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Source That Remembers</title>
<meta name="description" content="RECALL language — built different.">
<meta name="author" content="SEMANTICINTENT">
<style>
@import url('https://fonts.googleapis.com/css2?family=IBM%20Plex%20Mono:wght@400;500;600&family=IBM%20Plex%20Sans:wght@300;400;500;600&display=swap');
:root {
--bg: #080808;
--text: #E0E0E0;
--muted: #888888;
--accent: #00FF41;
--border: #1A1A1A;
--font-mono: 'IBM Plex Mono', 'Courier New', monospace;
--font-sans: 'IBM Plex Sans', 'Segoe UI', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-mono); background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.8; }
nav { padding: 16px 0; border-bottom: 1px solid var(--border); }
nav.sticky { position: sticky; top: 0; z-index: 100; background: var(--bg); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 900px; margin: 0 auto; padding: 0 24px; }
.nav-logo { font-weight: 600; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--text); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
section { padding: 80px 0; }
section.padding-small { padding: 40px 0; }
section.padding-medium { padding: 60px 0; }
section.padding-large { padding: 100px 0; }
.layout-centered { display: flex; flex-direction: column; align-items: center; text-align: center; }
.layout-grid { display: grid; gap: 24px; }
.layout-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.layout-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.layout-flex { display: flex; gap: 24px; flex-wrap: wrap; }
.layout-stack { display: flex; flex-direction: column; gap: 20px; }
h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 600; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
h1.style-mono, h2.style-mono, h3.style-mono { font-family: var(--font-mono); }
h1.style-sans, h2.style-sans, h3.style-sans { font-family: var(--font-sans); }
p { font-family: var(--font-sans); color: var(--muted); max-width: 680px; margin-bottom: 16px; line-height: 1.8; }
p.color-text { color: var(--text); }
p.color-accent { color: var(--accent); }
.recall-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-family: var(--font-mono); margin-bottom: 8px; }
.recall-btn { display: inline-block; padding: 12px 28px; font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; border: none; transition: opacity 0.2s; }
.recall-btn.primary { background: var(--accent); color: var(--bg); }
.recall-btn.ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.recall-btn.outline { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.recall-btn:hover { opacity: 0.85; }
pre.code-block { font-family: var(--font-mono); font-size: 13px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 24px; overflow-x: auto; line-height: 1.6; color: var(--accent); margin: 16px 0; }
.card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 28px 24px; }
.card.hover-lift { transition: transform 0.2s, border-color 0.2s; }
.card.hover-lift:hover { transform: translateY(-3px); border-color: var(--accent); }
.card h3 { font-family: var(--font-mono); font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.card p { font-size: 14px; margin-bottom: 12px; color: rgba(224,224,224,0.75); }
.card-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); }
.card a { display: block; color: inherit; text-decoration: none; height: 100%; }
.recall-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.recall-divider.dashed { border-top-style: dashed; }
.recall-divider.spacing-small { margin: 20px 0; }
.recall-divider.spacing-large { margin: 80px 0; }
.recall-input-group { margin-bottom: 20px; }
.recall-input-group label { display: block; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-family: var(--font-mono); }
.recall-input-group input, .recall-input-group textarea { width: 100%; background: transparent; border: 1px solid var(--border); color: var(--text); font-family: var(--font-mono); font-size: 14px; padding: 10px 14px; outline: none; resize: vertical; }
.recall-input-group input:focus, .recall-input-group textarea:focus { border-color: var(--accent); }
.recall-banner { padding: 12px 24px; background: var(--accent); color: var(--bg); font-family: var(--font-mono); font-size: 13px; letter-spacing: 1px; text-align: center; }
footer { padding: 40px 0; border-top: 1px solid var(--border); }
footer p { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); max-width: 100%; }
footer.align-center { text-align: center; }
footer.align-right { text-align: right; }
@media (max-width: 768px) {
.layout-grid.cols-2, .layout-grid.cols-3 { grid-template-columns: 1fr; }
.nav-links { gap: 16px; }
}
</style>
</head>
<body id="recall-portfolio">
<nav class=" sticky">
<div class="nav-inner">
<span class="nav-logo">RECALL</span>
<div class="nav-links">
<a href="#about">ABOUT</a>
<a href="#spec">SPEC</a>
<a href="https://github.com/semanticintent/recall">GITHUB</a>
</div>
</div>
</nav>
<section id="hero" class="padding-large">
<div class="container layout-centered">
<h1 class="style-mono">STILL HERE. STILL RUNNING.</h1>
<p class="color-muted">RECALL is a declarative web interface language with COBOL-inspired syntax. The source is the artifact.</p>
<a href="#spec" class="recall-btn primary">VIEW THE SPEC</a>
</div>
</section>
<section id="spec" class="padding-medium">
<div class="container layout-stack">
<div class="recall-label">DESIGN PRINCIPLES</div>
<h2>What RECALL believes</h2>
<div class="layout-grid cols-3 style-bordered">
<div class="card hover-lift">
<a href="#spec">
<h3>THE SOURCE IS THE ARTIFACT</h3>
<p>Every compiled .html file embeds its .rcl source in a comment block. View source to see the origin.</p>
<span class="card-tag">CORE PRINCIPLE</span>
</a>
</div>
<div class="card hover-lift">
<a href="#spec">
<h3>NO DEPENDENCIES</h3>
<p>Output is a single HTML file. Inline CSS. Vanilla JS where needed. Zero external links.</p>
<span class="card-tag">ZERO DEPS</span>
</a>
</div>
<div class="card hover-lift">
<a href="#spec">
<h3>VERBOSE IS A FEATURE</h3>
<p>COBOL's English-like verbosity is intentional legibility. The source reads like a document.</p>
<span class="card-tag">PHILOSOPHY</span>
</a>
</div>
</div>
</div>
</section>
<footer class="align-center">
<div class="container">
<p>COMPILED WITH RECALL 0.1. THE SOURCE IS EMBEDDED ABOVE.</p>
</div>
</footer>
</body>
</html>