blob: 5a40cfcb4dc92d4f3e9f0cff66f60167ff6f64f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<div itemscope :itemtype="schema('ProfilePage')">
<section itemprop="mainEntity" itemscope :itemtype="schema('Person')">
<aside><img itemprop="image" alt="A Photo of me" :src="metadata.author.image"></aside>
<h2 itemprop="name" @text="metadata.author.name"></h2>
<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:mboocha@sudomsg.com" 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>
|