-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (92 loc) · 3.65 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
---
layout: default
title: Unsolved Problem
---
<!-- Hero Section Begin -->
<section class="hero-section set-bg" data-setbg="assets/images/hero-bg.jpg">
<div class="container">
<div class="row">
<div class="col-lg-5">
<div class="hs-text">
<h2>UNSOLVED PROBLEM</h2>
<p>In mathematics, a conjecture is a conclusion or a proposition which is suspected to be true due to preliminary supporting evidence, but for which no proof or disproof has yet been found.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Hero Section End -->
<!-- About Us Section Begin -->
{% for author in site.authors %}
<section class="about-us-section spad">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<span>Member</span>
<h2>{{ author.name }}</h2>
</div>
<p class="f-para"> {{ author.content | markdownify}} </p>
<!-- <a href="#" class="primary-btn">Read More</a> -->
</div>
</div>
</div>
</section>
{% endfor %}
<!-- About Us Section End -->
<!-- Blog Section Begin -->
<div class="blog-section latest-blog spad">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">
<span>Latest Post</span>
<h2>From Our Posts</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="blog-item">
<div class="row">
<div class="col-lg-12">
<div class="bi-text">
<ul>
<li><i class="fa fa-calendar-o"></i> {{ site.posts[0].date | date_to_string }} </li>
</ul>
<h4><a href="{{ site.posts[0].url | prepend: site.baseurl }}">{{ site.posts[0].title }}</a></h4>
<p>{{ site.posts[0].excerpt | strip_html | truncatewords: 20}}</p>
<div class="bt-author">
<div class="ba-text">
<h5>{{ site.posts[0].author }}</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="blog-item">
<div class="row">
<div class="col-lg-12">
<div class="bi-text">
<ul>
<li><i class="fa fa-calendar-o"></i> {{ site.posts[1].date | date_to_string }} </li>
</ul>
<h4><a href="{{ site.posts[1].url | prepend: site.baseurl }}">{{ site.posts[1].title }}</a></h4>
<p>{{ site.posts[1].excerpt | strip_html | truncatewords: 20}}</p>
<div class="bt-author">
<div class="ba-text">
<h5>{{ site.posts[1].author }}</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Blog Section End -->