@@ -32,9 +32,9 @@ public struct HomePage: Page {
32
32
AnyProperty ( " scale " , " calc(100% * -1) 100% " )
33
33
}
34
34
35
- self . location > Element ( . span ) => {
36
- Color ( " #fff " )
37
- }
35
+ // self.location > Element(.b ) => {
36
+ // Color("#fff")
37
+ // }
38
38
39
39
self . educationItem => {
40
40
Display ( . flex)
@@ -65,7 +65,7 @@ public struct HomePage: Page {
65
65
title { " Erik Bautista Santibanez " }
66
66
meta ( . charset( . utf8) )
67
67
meta ( name: . viewport, content: " width=device-width, initial-scale=1.0 " )
68
- link ( . rel( . stylesheet) , . href( " https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css " ) )
68
+ // link(.rel(.stylesheet), .href("https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"))
69
69
style ( styling)
70
70
// script(.src("https://cdn.jsdelivr.net/npm/alpinejs@3.14.8/dist/cdn.min.js"), .defer) {}
71
71
}
@@ -99,39 +99,51 @@ public struct HomePage: Page {
99
99
100
100
" Currently in "
101
101
102
- span {
103
- strong {
102
+ // span {
103
+ b {
104
104
[ location. city, location. state, location. region == " United States " ? nil : location. region]
105
105
. compactMap ( \. self)
106
106
. joined ( separator: " , " )
107
107
}
108
- }
108
+ // }
109
109
}
110
110
}
111
111
}
112
112
}
113
113
}
114
114
main {
115
+ article {
116
+ // header {
117
+ // a(.target(.blank), .rel("noopener noreferrer"), .href("https://stedwards.edu/")) {
118
+ // "St. Edward's University"
119
+ // }
120
+ // }
121
+ // p { "Bachelor of Science in Computer Science" }
122
+ h6 { " Graduation " }
123
+ p { " I graduated from St. Edward's University with a Bachelor of Science in Computer Science. " }
124
+ }
115
125
// TODO: Do a timeline with filters
116
126
// section(.ariaLabel("Experience")) {
117
127
// h5 { "Experience" }
118
128
// }
119
129
// section(.ariaLabel("Projects")) {
120
130
// h5 { "Projects" }
121
131
// }
122
- section ( . ariaLabel( " Education " ) ) {
123
- h5 { " Education " }
124
- div ( . class( styling. educationItem) ) {
125
- div {
126
- a ( . target( . blank) , . rel( " noopener noreferrer " ) , . href( " https://stedwards.edu/ " ) ) {
127
- " St. Edward's University "
128
- }
129
- p { " Bachelor of Science in Computer Science " }
130
- }
131
-
132
- p { " 2018-2023 " }
133
- }
134
- }
132
+ // section(.ariaLabel("Education")) {
133
+ // h5 { "Education" }
134
+ // div(.class(styling.educationItem)) {
135
+ // div {
136
+ // a(.target(.blank), .rel("noopener noreferrer"), .href("https://stedwards.edu/")) {
137
+ // "St. Edward's University"
138
+ // }
139
+ // p {
140
+ // i { "Bachelor of Science in Computer Science" }
141
+ // }
142
+ // }
143
+
144
+ // p { "2018-2023" }
145
+ // }
146
+ // }
135
147
}
136
148
footer ( . ariaLabel( " Credits " ) ) {
137
149
hr ( )
@@ -166,3 +178,8 @@ public struct HomePage: Page {
166
178
// }
167
179
// }
168
180
// }
181
+
182
+ struct Event {
183
+ let date : Date
184
+ let title : String
185
+ }
0 commit comments