-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
85 lines (74 loc) · 2.73 KB
/
template.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>알고리즘 문제 해결 전략</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="'프로그래밍 대회에서 배우는 알고리즘 문제 해결 전략' 서적 홈페이지">
<meta name="author" content="JongMan Koo">
<!-- Le styles -->
<link href="/static/css/bootstrap.css" rel="stylesheet">
<link href="/static/css/bootstrap-responsive.css" rel="stylesheet">
<link href="/static/css/jmbook.css" rel="stylesheet">
<!-- mathjax -->
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<!-- highlighter.js -->
<link rel="stylesheet" href="http://yandex.st/highlightjs/7.3/styles/vs.min.css">
<script src="http://yandex.st/highlightjs/7.3/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="shortcut icon" href="/static/ico/favicon.ico">
</head>
<body>
<div class="container-fluid">
<!-- <div class="row-fluid"> -->
<!-- <div class="span12 well"> -->
<!-- <section class="title"> -->
<!-- <p class="tagline">프로그래밍 대회에서 배우는</p> -->
<!-- <p class="title">알고리즘 문제 해결 전략</p> -->
<!-- </section> -->
<!-- </div> -->
<!-- </div> -->
<div class="row-fluid">
<div class="span3">
<div class="sidebar well">
<section class="title">
<p class="tagline">프로그래밍 대회에서 배우는</p>
<p class="title"><a href="index.html">알고리즘 <br/>
문제 해결 전략</a></p>
</section>
<section>
<ul class="nav nav-list">
{% for item in MENU %}
<li><a href="{{ item['file'] }}.html"><i class="{{ item['icon'] }}"></i> {{ item['name'] }}</a></li>
{% endfor %}
</ul>
</section>
</div>
</div>
<div class="span9 content">
{{ content }}
</div>
</div>
<hr>
<footer>
<p>© 2012, 구종만</p>
</footer>
</div><!--/.fluid-container-->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="/static/js/jmbook.js"></script>
<script src="/static/js/bootstrap.js"></script>
</body>
</html>