-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (56 loc) · 2.25 KB
/
index.html
File metadata and controls
79 lines (56 loc) · 2.25 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
title: "Mundana Free Jekyll Theme"
layout: default
pagination:
enabled: true
description: "A great Jekyll theme developed by Sal @wowthemesnet."
---
<div class="container">
{% if page.url == "/" %}
<!-- Sticky - add sticky tag to the post you want to highlight here - tags: [sticky] -->
{% for post in site.posts %}
{% if post.tags contains "home" %}
<div class="jumbotron jumbotron-fluid jumbotron-home pt-0 pb-0 mt-3 mb-2rem bg-lightblue position-relative">
<div class="pl-4 pr-0 h-100 tofront">
<div class="row justify-content-between">
<div class="col-md-6 pt-6 pb-6 pr-lg-4 align-self-center">
<h1 class="mb-3">{{post.title}}</h1>
<!-- <p class="mb-3 lead"> I am Chandan</p> -->
<p class="mb-3 lead">
{{ post.excerpt }}
</p>
<p><a href="https://www.linkedin.com/in/chandansingha/">LINKEDIN</a> | <a href="https://twitter.com/focksit">TWITTER</a> | <a href="https://stackoverflow.com/users/3396769/chandan">STACK OVERFLOW</a></p>
</div>
<!-- <div class="col-md-6 d-none d-md-block pr-0" style="background-size:cover;background-image:url({{site.baseurl}}/{{ post.image }});">
</div> -->
</div>
</div>
</div>
{% endif %}
{% endfor %}
{% endif %} <!--endif page url is / -->
<div class="row mt-3">
<div class="col-md-10 main-loop">
<!-- <h4 class="font-weight-bold spanborder"><span>Posts</span></h4> -->
<!-- Sticky - add sticky tag to the post you want to highlight here - tags: [sticky] -->
{% for post in site.posts %}
{% if post.published == true %}
{% include main-loop-card.html %}
{% endif %}
{% endfor %}
</div>
</div>
</div>
<!-- Footer -->
<!-- <footer class="bg-white border-top p-3 text-muted small">
<div class="container">
<div class="row align-items-center justify-content-between">
<div>
<a href="/" class="btn btn-dark">Resume</a> <a href="/" class="btn btn-dark">Posts</a>
<span class="navbar-brand mr-2 mb-0"><strong>Chandan</strong></span>
<span>Copyright © <script>document.write(new Date().getFullYear())</script>.</span>
</div>
</div>
</div>
</footer>
-->