-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (72 loc) · 2.82 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
---
title: "Anasayfa"
layout: default
pagination:
enabled: true
description: "Çocuklara Okumayı Sevdiren Yayınevi..."
---
<div class="container">
{% if page.url == "/" %}
<!-- slider -->
{% include slider.html %}
<div class="container d-none">
<div class="row">
<div class="col-12 onlineSinav">
<h1 class="OnlineBaslik">Online Sınav Platformu</h1>
<a href="https://e-damla.com.tr/site/login" target="_blank">
<button type="button" class="btn btn-danger btn-lg UyeOlButon">
<h4> Üye Ol </h4>
</button>
</a>
</div>
</div>
</div>
<div class="container mt-4" >
<div class="row">
{% for post in site.posts %}
{% if post.homepage== true %}
<div class="col-md-4 border mb-4">
<div class="card mx-auto my-auto">
<a class="text-center" href="{{site.baseurl}}{{post.url}}">
{% if post.image %}
<img class="rounded-pill" style="max-height: 20vh;" src="{{site.baseurl}}{{post.image}}" alt="">
{% endif %}
<h3>{{post.title}}</h3>
</a>
<p >
<!-- {{ post.excerpt | strip_html | strip_newlines | truncate: 146 }} -->
{{ post.excerpt | strip_html | strip_newlines }}
</p>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>
<!-- {% assign books = site.books %}
{% include product-slider.html %}
<!-- Sticky - add sticky tag to the post you want to highlight here - tags: [sticky] -->
{% for post in site.posts %}
{% if post.sticky %}
<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-5 pb-5 pr-lg-4 align-self-center d-none">
<h1 class="mb-3">{{post.title}}</h1>
<p class="mb-3 lead">
<!-- {{ post.excerpt | strip_html | strip_newlines | truncate: 146 }} -->
{{ post.excerpt | strip_html | strip_newlines }}
</p>
<a href="{{site.baseurl}}{{post.url}}" class="btn btn-dark">Devamını oku</a>
</div>
<div class="col-md-6 d-none d-md-block pr-0" style="background-size:cover;">
<img src="{{site.baseurl}}{{post.image}}" alt="">
</div>
</div>
</div>
</div>
{% endif %}
{% endfor %}
{% endif %}
<!--endif page url is / -->
</div>