1+ < head >
2+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge,chrome=1 ">
3+ < meta http-equiv ="content-type " content ="text/html; charset=utf-8 ">
4+ < link href ="http://gmpg.org/xfn/11 " rel ="profile ">
5+ < meta name ="description " content ="{{ site.description }} ">
6+
7+ <!-- Enable responsiveness on mobile devices-->
8+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0, maximum-scale=1 ">
9+
10+ < title >
11+ {% if page.title == "Home" %}
12+ {{ site.title }} · {{ site.tagline }}
13+ {% else %}
14+ {{ page.title }} · {{ site.title }}
15+ {% endif %}
16+ </ title >
17+
18+ <!-- CSS -->
19+ < link id ="theme-style " rel ="stylesheet " href ="{{ "/assets/css/theme-2.css" | prepend: site.baseurl }}">
20+
21+ <!-- Icons -->
22+ < link rel ="shortcut icon " href ="{{ "/assets/favicon.ico" | prepend: site.baseurl }}">
23+
24+ <!-- RSS -->
25+ < link rel ="alternate " type ="application/rss+xml " title ="{{ site.title }} "
26+ href ="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
27+ {% if site.google_analytics %} {% include google_analytics.html %} {% endif %}
28+ </ head >
29+
30+ < body >
31+ < header class ="header text-center ">
32+ < h1 class ="blog-name pt-lg-4 mb-0 "> < a href ="{{ site.baseurl }}/ "> {{ site.title }}</ a > </ h1 >
33+ < nav class ="navbar navbar-expand-lg navbar-dark ">
34+ < button class ="navbar-toggler " type ="button " data-toggle ="collapse " data-target ="#navigation "
35+ aria-controls ="navigation " aria-expanded ="false " aria-label ="Toggle navigation ">
36+ < span class ="navbar-toggler-icon "> </ span >
37+ </ button >
38+ < div id ="navigation " class ="collapse navbar-collapse flex-column ">
39+ < div class ="profile-section pt-3 pt-lg-0 ">
40+ < img class ="profile-image mb-3 rounded-circle mx-auto "
41+ src ="{{ "/assets/images/profile.png" | prepend: site.baseurl }}" alt="image">
42+ < div class ="bio mb-3 "> I am Elmurod Talipov, a system software engineer.< br > < a href ="/about "> Find out more
43+ about me</ a > </ div >
44+ <!--//bio-->
45+ < ul class ="social-list list-inline py-3 mx-auto ">
46+ < li class ="list-inline-item "> < a href ="https://twitter.com/{{ site.social.twitter }} "> < i
47+ class ="fab fa-twitter fa-fw "> </ i > </ a > </ li >
48+ < li class ="list-inline-item "> < a href ="https://www.linkedin.com/in/{{ site.social.linkedin }} "> < i
49+ class ="fab fa-linkedin-in fa-fw "> </ i > </ a > </ li >
50+ < li class ="list-inline-item "> < a href ="https://github.com/{{ site.social.github }} "> < i
51+ class ="fab fa-github-alt fa-fw "> </ i > </ a > </ li >
52+ </ ul >
53+ <!--//social-list-->
54+ < hr >
55+ </ div >
56+ <!--//profile-section-->
57+ < ul class ="navbar-nav flex-column text-left ">
58+ {% for link in site.navigation %}
59+ {% assign current = nil %}
60+ {% assign active = nil %}
61+ {% if page.url contains link.url or forloop.first and page.url == '/' or page.url == 'index.html' %}
62+ {% assign current = 'current' %}
63+ {% assign active = 'active' %}
64+ {% endif %}
65+ < li class ="nav-item {% if forloop.first %}first{% endif %} {{ active }} {% if forloop.last %}last{% endif %} ">
66+ < a class ="nav-link " href ="{{ link.url | prepend: site.baseurl }} ">
67+ < i class ="fas {{ link.icon }} fa-fw mr-2 "> </ i > {{ link.title }}{% if current %}
68+ < span class ="sr-only "> ({{ current }})</ span > {% endif %}
69+ </ a >
70+ </ li >
71+ {% endfor %}
72+ </ ul >
73+
74+ < div class ="my-2 my-md-3 ">
75+ < a class ="btn btn-primary " href ="mailto:{{ site.social.email }} " target ="_blank "> Get in Touch</ a >
76+ </ div >
77+ </ div >
78+ </ nav >
79+ </ header >
0 commit comments