-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
60 lines (54 loc) · 2.49 KB
/
Copy pathheader.html
File metadata and controls
60 lines (54 loc) · 2.49 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
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<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="#">{{ site.title }}</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#portfolio">Portfolio</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Header -->
<div class="intro-header" id="about">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="intro-message">
<img class="img-responsive center-block" src="img/profile.png" alt="">
<!--<h1>{{ page.title }}</h1>-->
<h3>{{ page.subTitle }}</h3>
<p>Hi, I'm Fred. Bedobi is my software design and development operation. Get in touch at <a href="mailto:fre.and.fri@gmail.com">fre.and.fri@gmail.com</a> to discuss projects.</p>
<p>Check out my portfolio below or <a target="_blank" href="http://github.com/androidfred">my GitHub page</a> for some of my work.</p>
<hr class="intro-divider">
<ul class="list-inline intro-social-buttons">
{% for social in site.social %}
<li>
<a href="{{ social.url }}" class="btn btn-default btn-lg"><i class="fa fa-{{ social.icon }} fa-fw"></i> <span class="network-name">{{ social.title }}</span></a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.intro-header -->