-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
executable file
·57 lines (53 loc) · 1.78 KB
/
index.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
layout: default
excerpt: Personal website/blog of sangam biradar
---
<div class="main">
<div class="profile-image">
<img src="{{ '/assets/img/0-2 copy.jpeg' | relative_url }}" alt="">
</div>
<header>
<h1 class="title">SANGAM BIRADAR <small class="gray-text small-text">@ENGINEITOPS</small></h1>
<section>
<div class="intro">
{{ site.description }}
</div>
<div class="social">
Social:
<a href="">Twitter</a>
<a href="https://medium.com/engineitops">Medium</a>
<a href="https://github.com/sangam14">GitHub</a>
<a href="https://www.linkedin.com/in/sangambiradar14/">LinkedIn</a>
</div>
</section>
</header>
<section>
<h3 class="section-header">Blog Posts <small class="gray-text">(recent 5)</small></h3>
<div class="blog-posts">
{% for post in site.posts limit: 5%}
<div class="post">
<div class="blog-title">
{% if post.link_post %}
<a href="{{ post.link_post }}">{{ post.title }}</a>
<span>Medium⇗ · {{ post.date | date: "%b %d, %y" }}</span>
{% else %}
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
<span>{{ post.date | date: "%b %d, %y" }}</span>
{% endif %}
</div>
<div class="bottom-border-full"></div>
</div>
{% endfor %}
</div>
<br>
... more on <a href="/blog/">blog page</a>
</section>
</div>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-134193836-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-134193836-1');
</script>