-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·109 lines (84 loc) · 2.69 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
---
layout: page
title: "붉은마왕"
description: ""
header-img: "img/home-bg.jpg"
---
<html class="no-js" lang="en">
<head>
<meta content="charset=utf-8">
<!-- CSS -->
<link rel="stylesheet" href="../css/intro.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="css/flexslider.css" type="text/css" media="screen"/>
<!-- Modernizr -->
<script src="js/modernizr.js"></script>
<!-- jQuery -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<!-- FlexSlider -->
<script defer src="js/jquery.flexslider.js"></script>
<!-- Back To Top -->
<script type="text/javascript">
$(function () {
SyntaxHighlighter.all();
});
$(window).load(function () {
$('.flexslider').flexslider({
animation: "slide",
slideshow: false,
slideshowSpeed: 12000,
pausePlay: true,
start: function (slider) {
$('body').removeClass('loading');
}
});
});
</script>
</head>
<body>
<!-- intro -->
<div class="intro">
<div class="row">
<div class="col-md-left-cntct">
<h2>붉은마왕의 블로그입니다.</h2>
<h3>개발관련 블로그 글을 포스팅 할 예정입니다.</h3>
<br>
<!--
<h4>It is based on <a href="http://ironsummitmedia.github.io/startbootstrap-clean-blog-jekyll/">Clean Blog</a>
theme by <a href="http://startbootstrap.com/">Start Bootstrap</a>.
<br><br><br>
<b>Features</b>:
<br><br>-- Integrated slider with captions from <a
href="http://flexslider.woothemes.com/basic-slider-with-caption.html">Flexslider</a>.
<br><br>-- Back To Top arrow.
<br><br>-- A separate section for <a href="{{ root_url }}/writing/">'blogging'</a>.
<br><br>-- A separate section for <a href="{{ root_url }}/gallery/">'galleries'</a>, beside the featured one at
the homepage.</h4>
-->
</div>
<div class="col-md-right-cntct">
{% include links.html %}
</div>
</div>
</div>
<!-- slider -->
<div class="flexslider" style="display:none;">
<ul class="slides">
<li>
<img src="img/slider/bg1.jpg"/>
<p class="flex-caption">Source: <a href="https://unsplash.com/">Unsplash</a></p>
</li>
<li>
<img src="img/slider/bg2.jpg"/>
<p class="flex-caption">Source: <a href="https://unsplash.com/">Unsplash</a></p>
</li>
<li>
<img src="img/slider/bg3.jpg"/>
<p class="flex-caption">Source: <a href="https://unsplash.com/">Unsplash</a></p>
</li>
</ul>
</div>
<br>
<h6><p>Image Source: <a href="http://www.wallconvert.com/wallpapers/fantasy/on-cliffs-edge-18900.html">Wallconvert</a>
</p></h6>
</body>
</html>