From 900a707fdcb04e5739126ec2509fdc39fee7491c Mon Sep 17 00:00:00 2001 From: Marc Pervaz Boocha Date: Sun, 7 Apr 2024 19:43:04 +0530 Subject: Rewrote Site in 11ty Still need to Update the content --- src/server/content/about.ts | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 src/server/content/about.ts (limited to 'src/server/content/about.ts') diff --git a/src/server/content/about.ts b/src/server/content/about.ts deleted file mode 100644 index 4a988e3..0000000 --- a/src/server/content/about.ts +++ /dev/null @@ -1,32 +0,0 @@ -import Page from "../template/Page.js" -import metadata from "../metadata.js" -import { c } from "../template/vdom.js" -import h from "../template/header.js" -import schema from "../utils/schema.js" -import { img, picture, source, div, p, span, ul, li, a } from "../template/html.js" - -Page({ - title: "About Me", - url: "/about", - content() { - return c(div, { itemscope: true, itemtype: schema("Person") }, - c(h, { level: 2, itemprop: "name" }, metadata.author.name), - c(picture, { class: "side" }, - c(source, { srcset: [128, 256, 512].map(width => `${metadata.author.image}?format=png&width=${width} ${width}w`).join(", ") }), - c(img, { itemprop: "image", alt: "A Photo of me", src: metadata.author.image }) - ), - c(p, { itemprop: "description" }, "I am an analytical and passionate third year ", - c(span, { itemprop: "affiliation", itemtype: schema("CollegeOrUniversity"), itemscope: true }, c(span, { itemprop: "name" }, "CHRIST University")), - " ", c(span, {}, "student"), ` pursuing B. Tech in Computer Engineering in Bengaluru. I am eager to further my knowledge, develop my skills ", - "and gain experience to convert my interest in computers into a fulfilling career.`), - c(p, {}, "Contact Details"), - c(ul, {}, - c(li, {}, c(a, { href: `mailto:${metadata.author.email}`, itemprop: "email" }, "Email")), - c(li, {}, c(a, { href: "https://github.com/marcthe12", itemprop: "sameas" }, "Github")), - c(li, {}, c(a, { href: "https://www.linkedin.com/in/marc-pervaz-boocha-200706236/", itemprop: "sameas" }, "LinkedIn")), - ), - ) - } -}).setupRoute() - - -- cgit v1.2.3-70-g09d2