aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/fallback.jpegbin0 -> 1240 bytes
-rw-r--r--src/pages/index.html3
-rw-r--r--src/pages/members/index.html83
-rw-r--r--src/pages/members/rosa.jpegbin0 -> 35603 bytes
4 files changed, 86 insertions, 0 deletions
diff --git a/src/pages/fallback.jpeg b/src/pages/fallback.jpeg
new file mode 100644
index 0000000..8e0b090
--- /dev/null
+++ b/src/pages/fallback.jpeg
Binary files differ
diff --git a/src/pages/index.html b/src/pages/index.html
index e03d20e..4009dac 100644
--- a/src/pages/index.html
+++ b/src/pages/index.html
@@ -3,6 +3,9 @@
home
<!--: endreplace -->
+<!--: replace extraHead -->
+<!--: endreplace -->
+
<!--: replace body -->
<main>
<section>
diff --git a/src/pages/members/index.html b/src/pages/members/index.html
new file mode 100644
index 0000000..fdf76fe
--- /dev/null
+++ b/src/pages/members/index.html
@@ -0,0 +1,83 @@
+<!--: extends base.html -->
+<!--: replace title -->
+members
+<!--: endreplace -->
+
+<!--: replace extraHead -->
+<style>
+ section.member-info {
+ border-radius: 10px;
+ display: grid;
+ grid-template-columns: 1fr 6fr 3fr;
+ margin-bottom: 0.5rem;
+ }
+
+ section.member-info header h2, section.member-info p {
+ margin: 0.5rem 5px;
+ }
+
+ section.member-info div#image-container {
+ margin: 0.5rem 0 0.5rem 0.5rem;
+ }
+
+ section.member-info div#image-container img {
+ width: 100px;
+ }
+
+ section.member-info div#links nav ul {
+ float: right;
+ margin-right: 0.5rem;
+ }
+</style>
+<!--: endreplace -->
+
+<!--: replace body -->
+<main>
+ <section class="member-info odd">
+ <div id="image-container">
+ <img src="rosa.jpeg" alt="Rosa's profile picture" />
+ </div>
+ <div id="name-and-intro">
+ <header>
+ <h2>Rosa</h2>
+ </header>
+ <p>
+ Hi! I'm Rosa. I'm a Canadian trans woman who likes messing around with
+ computers. I make Minecraft mods and am currently learning the
+ <a href="https://ziglang.org" rel="external">Zig</a> programming language.
+ </p>
+ </div>
+ <div id="facts-and-links">
+ <ul>
+ <li>age: 20</li>
+ <li>tz: America/Toronto</li>
+ <li>email: <a href="mailto:rosaontheweb@proton.me">rosaontheweb@proton.me</a></li>
+ <li>matrix: <a href="https://matrix.to/#/@rosa:girlonthe.net">@rosa:girlonthe.net</a></li>
+ </ul>
+ </div>
+ </section>
+</main>
+<!--: endreplace -->
+
+<!--
+ if you want to add a section, copy this template. add the "odd" class when
+ your entry is odd-numbered
+-->
+<section class="member-info">
+ <div id="image-container">
+ <img src="your-image.jpeg" onerror="this.src = '/fallback.jpeg';" alt="{name}'s profile picture" />
+ </div>
+ <div id="name-and-intro">
+ <header>
+ <h2>Name</h2>
+ </header>
+ <p>
+ hellooooooo
+ </p>
+ </div>
+ <div id="facts-and-links">
+ <ul>
+ <li>tz: Etc/UTC</li>
+ </ul>
+ </div>
+</section>
diff --git a/src/pages/members/rosa.jpeg b/src/pages/members/rosa.jpeg
new file mode 100644
index 0000000..f0ce13b
--- /dev/null
+++ b/src/pages/members/rosa.jpeg
Binary files differ