-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (99 loc) · 5.04 KB
/
index.html
File metadata and controls
125 lines (99 loc) · 5.04 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-148357635-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-148357635-1');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Записки питониста - Главная</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<link rel="stylesheet" href="https://aleksey925.github.io/knowledge-base/static/css/base.css">
</head>
<body>
<nav class="navbar navbar-static-top navbar-inverse">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed"
data-toggle="collapse" data-target="#navbar"
aria-expanded="false" aria-controls="navbar">
<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="https://aleksey925.github.io/knowledge-base/index.html">Записки питониста</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="https://aleksey925.github.io/knowledge-base/index.html">Главная</a></li>
<li><a href="https://aleksey925.github.io/knowledge-base/knowledge_base/index.html">База знаний</a></li>
</ul>
</div><!-- /.nav-collapse -->
</div><!-- /.container -->
</nav><!-- /.navbar -->
<div class="container">
<div class="row row-content">
<div class="col-sm-12">
<div class="jumbotron">
<div class="row">
<div class="col-sm-4">
<img src="https://aleksey925.github.io/knowledge-base/static/images/avatar.png" width="100%">
</div>
<div class="col-sm-8">
<h1>Привет!</h1>
<p>
Рад, что вы зашли в мой небольшой бложик, где я собираю информацию,
которая пригодилась мне в моей профессиональной деятельности. Надеюсь
вы найдете здесь, что-то полезное для себя)
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 text-center" id="contact-block">
<h2>Контакты</h2>
<a href="mailto:petrunnik.a@mail.ru">
<img class="contact-img" src="https://aleksey925.github.io/knowledge-base/static/images/email.png">
</a>
<a href="skype:alex85244">
<img class="contact-img" src="https://aleksey925.github.io/knowledge-base/static/images/skype.png">
</a>
<a href="https://www.linkedin.com/in/aleksey-petrunnik-5313a9126/">
<img class="contact-img" src="https://aleksey925.github.io/knowledge-base/static/images/linkedin.png">
</a>
<a href="https://github.com/aleksey925/">
<img class="contact-img" src="https://aleksey925.github.io/knowledge-base/static/images/github.png">
</a>
<a href="https://gitlab.com/alex925/">
<img class="contact-img" src="https://aleksey925.github.io/knowledge-base/static/images/gitlab.png">
</a>
</div>
</div>
</div>
</div>
<hr>
<footer>
<p>
При копировании информации с данного сайта пожалуйста указывайте
ссылку на источник. © 2019 Записки питониста
</p>
</footer>
</div><!--/.container-->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
</body>
</html>