diff options
-rw-r--r-- | _data/metadata.js | 5 | ||||
-rw-r--r-- | _includes/base.html | 4 | ||||
-rw-r--r-- | about.html | 29 | ||||
-rw-r--r-- | assets/main.css | 3 |
4 files changed, 24 insertions, 17 deletions
diff --git a/_data/metadata.js b/_data/metadata.js index 3c6c1b8..b8bd04e 100644 --- a/_data/metadata.js +++ b/_data/metadata.js @@ -4,12 +4,9 @@ export default { language: "en-GB", theme: "#8b0000", description: "Messages from root", - feed: { - atom: "/feed", - }, author: { name: "Marc Pervaz Boocha", - email: "mboocha@sudomsg.xyz", + email: "mboocha@sudomsg.com", image: "/public/favicon.svg", url: "/about/#marc-pervaz-boocha" } diff --git a/_includes/base.html b/_includes/base.html index 36d9821..2b22576 100644 --- a/_includes/base.html +++ b/_includes/base.html @@ -25,6 +25,10 @@ <link rel="icon" href="/favicon.svg" type="image/svg+xml"> {%- css %}{% include "assets/main.css" %}{% endcss %} <link rel="stylesheet" href="{% getBundleFileUrl 'css' %}"> + <!-- Cloudflare Web Analytics --> + <script defer src='https://static.cloudflareinsights.com/beacon.min.js' + data-cf-beacon='{"token": "4fb843a011b44f40916bbb537d62ee3c"}'></script> + <!-- End Cloudflare Web Analytics --> </head> <body> @@ -1,23 +1,30 @@ ---- -layout: page.html -title: About Me -eleventyNavigation: - key: About Me - order: 3 +---json +{ +"layout": "page.html", +"title": "About Me", +"eleventyNavigation":{ +"key": "About Me", +"order": 3 +} +} --- <div itemscope itemtype="Person"> <section> - <h2 itemprop="name" >{{ metadata.author.name }}</h2> + <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="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> + itemtype="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> + <li><a href="https://www.linkedin.com/in/marc-pervaz-boocha-200706236/" + itemprop"sameas">LinkedIn</a></li> </ul> </section> </div> diff --git a/assets/main.css b/assets/main.css index be1f030..c1bbd6d 100644 --- a/assets/main.css +++ b/assets/main.css @@ -4,7 +4,7 @@ box-sizing: border-box; } -body { +:root { text-align: justify; } @@ -109,7 +109,6 @@ aside { @media (max-width: 30rem) { - .side, aside { margin: inherit; max-width: 100%; |