Add jekyll-assets gem and the default layout based on the gem.
This commit is contained in:
39
_layouts/default.html
Normal file
39
_layouts/default.html
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="shortcut icon" href="/assets/ico/favicon.ico">
|
||||
|
||||
<title>{{ site.title }}</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
{% stylesheet bootstrap.css %}
|
||||
<!-- Bootstrap theme -->
|
||||
{% stylesheet bootstrap-theme.css %}
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
{% stylesheet theme.css %}
|
||||
|
||||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{{ content }}
|
||||
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
|
||||
{% javascript bootstrap.min.js %}
|
||||
{% javascript holder.js %}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user