aboutsummaryrefslogtreecommitdiffstats
path: root/about.html
diff options
context:
space:
mode:
author2024-06-21 21:59:53 +0530
committer2024-06-21 21:59:53 +0530
commita190ecdc3f0e06c35b0bfb3ba825a1b29b162f37 (patch)
tree8fef59a521ef25442d0c99c0e24c2e5bb97827d0 /about.html
parentHot fix (diff)
downloadsudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar
sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.gz
sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.bz2
sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.lz
sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.xz
sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.tar.zst
sudomsg-a190ecdc3f0e06c35b0bfb3ba825a1b29b162f37.zip
Update deps and updated the about page.
On branch main Your branch is up to date with 'origin/main'. Changes to be committed: modified: 404.html modified: _includes/base.html new file: _includes/main.css modified: _includes/page.html modified: _includes/post.html modified: about.html deleted: assets/main.css deleted: atom.xml.njk modified: eleventy.config.js modified: index.html modified: package-lock.json modified: package.json modified: posts.html modified: posts/posts.11tydata.js
Diffstat (limited to '')
-rw-r--r--about.html45
1 files changed, 25 insertions, 20 deletions
diff --git a/about.html b/about.html
index 9a42be1..1820be5 100644
--- a/about.html
+++ b/about.html
@@ -1,6 +1,6 @@
---json
{
-"layout": "page.html",
+"layout": "page",
"title": "About Me",
"eleventyNavigation":{
"key": "About Me",
@@ -8,23 +8,28 @@
}
}
---
-<div itemscope itemtype="{% schema 'Person' %}">
- <section>
- <h2 itemprop="name" id="{{ metadata.author.name | slugify }}">{{ metadata.author.name }}</h2>
- <aside><img itemprop="image" alt="A Photo of me" src="{{metadata.author.image}}"></aside>
- <p itemprop="description">I am an analytical and passionate fourth year <span itemprop="affiliation"
- itemtype="{% schema 'CollegeOrUniversity' %}" itemscope><span itemprop="name">CHRIST
- University</span></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.</p>
- <p>Contact Details</p>
- <ul>
- <li><a href="mailto:{{metadata.author.email}}" itemprop="email">Email</a></li>
- <li><a href="https://github.com/marcthe12" itemprop="sameas">Github</a></li>
- <li><a href="https://www.linkedin.com/in/marc-pervaz-boocha-200706236/"
- itemprop"sameas">LinkedIn</a></li>
- </ul>
- </section>
+
+<div itemscope :itemtype="schema('ProfilePage')">
+ <section itemprop="mainEntity" itemscope :itemtype="schema('Person')">
+ <h2 itemprop="name" :id="slugify(metadata.author.name)" @content="metadata.author.name">Marc</h2>
+ <aside><img itemprop="image" alt="A Photo of me" :src="metadata.author.image"></aside>
+ <div itemprop="description">
+ Likes to create programs. Loves to be updated on the latest news and in General
+ Knowledge.
+ </div>
+ <div>
+ <h3>Personal Information</h3>
+ <p>Working: <span itemprop="memberof">Qburst</span></p>
+ <p>Lives in: <span itemprop="address">Bangalore</span></p>
+ </div>
+ <div>
+ <h3>Contact Details</h3>
+ <ul>
+ <li><a href="mailto:{{metadata.author.email}}" itemprop="email">Email</a></li>
+ <li><a href="https://github.com/marcthe12" itemprop="sameas">Github</a></li>
+ <li><a href="https://www.linkedin.com/in/marc-pervaz-boocha-200706236/"
+ itemprop="sameas">LinkedIn</a></li>
+ </ul>
+ </div>
+</div>
</div>