-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdefault.html
86 lines (73 loc) · 3.99 KB
/
default.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta name="description" content="{% block meta_desc %}Hong Kong Open Source Conference 2016 (HKOSCon 2016) will be hosted in 24-25 June.{% endblock %}" />
<meta name="author" content="Hong Kong Open Source Conference 2016" />
<meta property="og:site_name" content="Hong Kong Open Source Conference 2016" />
<meta property="og:title" content="{% block title %}Hong Kong Open Source Conference 2016{% endblock %}" />
<meta property="og:url" content="{% block og_url %}http://2016.opensource.hk{% endblock %}" />
<meta property="og:image" content="{% block og_image %}http://2016.opensource.hk/assets/images/og_image.jpg{% endblock %}" />
<meta property="og:type" content="{% block og_type %}article{% endblock %}" />
<meta property="og:description" content="{% block og_desc %}Hong Kong Open Source Conference 2016 HKOSCon (2016.06.24-25) is a annual international open source conference in Hong Kong. It is aimed to demonstrate the use of open source software technology, open hardware technology and latest development in the world.{% endblock %}" />
<link href="/assets/images/favicon.png" rel="shortcut icon" type="image/png"/>
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700|Roboto:400,100,300,700,500' rel='stylesheet' type='text/css'>
<link href='//2016.opensource.hk/statics/genericons/genericons.css?v={{ timeHash }}' rel='stylesheet' type='text/css' />
<title>{% block title %}{% endblock %} | Hong Kong Open Source Conference 2016 // 香港開源年會 2016</title>
<link href="/assets/css/style.css?v={{ timeHash }}" rel="stylesheet" />
{% block style %}{% endblock %}
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- menu begins -->
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">HKOSCon 2016</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
{% include 'includes/nav.html' %}
<ul class="nav navbar-nav navbar-right">
<li class="nav-highlight">
<a href="https://hkoscon2016.eventbrite.com/?aff=website">Get Your Ticket</a>
</li>
</ul>
</div>
</div>
</div>
<!-- menu ends -->
<header class="jumbotron dark-sections">
<div class="container">
{%- block before_title %}{% endblock -%}
<h1>{% block title %}{% endblock %}</h1>
{% block description %}{% endblock %}
</div>
</header>
<div id="main-wrapper"><div id="main">
{% block content %}(contents here){% endblock %}
</div></div><!--/#main #main-wrapper-->
{% block bottom %}{% endblock %}
{% include 'includes/bottom-sns-logos.html' %}
<footer>
<div class="container content-container">
{% include 'includes/footer.html' %}
</div>
</footer> <!-- /container -->
{% for script in defaultScripts %}
<script src="{{ script }}"></script>
{% endfor %}
{% block scripts %}{% endblock %}
</body>
</html>