Skip to content

Commit 8e55b04

Browse files
committed
Refactoring
1 parent 970a0c5 commit 8e55b04

File tree

5 files changed

+62
-40
lines changed

5 files changed

+62
-40
lines changed

docs/_includes/head.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
4+
<title>{{ site.title | default: site.github.repository_name }}</title>
5+
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
6+
<!--favicon-->
7+
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
8+
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
9+
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
10+
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
11+
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
12+
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
13+
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
14+
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
15+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
16+
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
17+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
18+
<link rel="icon" type="image/png" sizes="96x96" hrgef="/favicon-96x96.png">
19+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
20+
<link rel="manifest" href="/manifest.json">
21+
<meta name="msapplication-TileColor" content="#ffffff">
22+
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
23+
<meta name="theme-color" content="#ffffff">
24+
<!--/favicon-->
25+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
26+
<script src="{{ '/assets/js/respond.js' | relative_url }}"></script>
27+
<!--[if lt IE 9]>
28+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
29+
<![endif]-->
30+
<!--[if lt IE 8]>
31+
<link rel="stylesheet" href="{{ '/assets/css/ie.css' | relative_url }}">
32+
<![endif]-->
33+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
34+
</head>

docs/_layouts/default.html

Lines changed: 2 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -17,44 +17,7 @@
1717
{% assign author = "Дмитрий Евдокимов" %}
1818
{% endif %}
1919
<html lang="{{ lang }}">
20-
<head>
21-
<meta charset="utf-8">
22-
<meta http-equiv="X-UA-Compatible" content="chrome=1">
23-
<title>{{ site.title | default: site.github.repository_name }}</title>
24-
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
25-
<!--favicon-->
26-
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
27-
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
28-
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
29-
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
30-
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
31-
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
32-
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
33-
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
34-
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
35-
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
36-
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
37-
<link rel="icon" type="image/png" sizes="96x96" hrgef="/favicon-96x96.png">
38-
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
39-
<link rel="manifest" href="/manifest.json">
40-
<meta name="msapplication-TileColor" content="#ffffff">
41-
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
42-
<meta name="theme-color" content="#ffffff">
43-
<!--/favicon-->
44-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
45-
<script src="{{ '/assets/js/respond.js' | relative_url }}"></script>
46-
<!--[if lt IE 9]>
47-
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
48-
<![endif]-->
49-
<!--[if lt IE 8]>
50-
<link rel="stylesheet" href="{{ '/assets/css/ie.css' | relative_url }}">
51-
<![endif]-->
52-
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
53-
<style>
54-
.wrapper section {margin-top: 20px;}
55-
#footer table tbody tr td {border-bottom: none; border-top: 1px solid #434343;}
56-
</style>
57-
</head>
20+
{% include head.html %}
5821
<body>
5922
<div class="wrapper">
6023
<section>
@@ -133,7 +96,7 @@ <h2>Downloads</h2>
13396
{% endif %}
13497
{% endif %}
13598
</section>
99+
{% include footer.html %}
136100
</div>
137-
{% include footer.html %}
138101
</body>
139102
</html>

docs/assets/css/style.scss

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
---
3+
4+
@import "{{ site.theme }}";
5+
6+
.wrapper section {
7+
margin-top: 20px;
8+
}
9+
#footer table tbody tr td {
10+
border-bottom: none;
11+
border-top: 1px solid #434343;
12+
}
13+
.credits.left {
14+
float: left;
15+
}
16+
.credits.right {
17+
float: right;
18+
}
19+
.credits {
20+
font-size: 11px;
21+
}
22+
h1 {
23+
clear: both;
24+
margin-bottom: 30px;
25+
}

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Excel, и коллекция разных макросов из нее все е
1717
языковой раскладки, как это бывает сделано у многих программеров, далеких от
1818
реальных работников).
1919

20-
![dbf161p2015.png](images/dbf161p2015.png)
20+
![dbf161p2015.png](assets/images/dbf161p2015.png)
2121

2222
На картинке выше обрабатывается файл в формате Приложения 4 "Структура файла
2323
передачи ОЭС" к Положению Банка России от 29 августа 2008 г. N 321-П

0 commit comments

Comments
 (0)