-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
73 lines (63 loc) · 2.48 KB
/
contact.html
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
<!DOCTYPE HTML>
<!--
Editorial by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Contact</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="icon" href="/images/favicon.ico">
<link rel="stylesheet" href="/assets/css/main.css" />
<link rel="stylesheet" href="/assets/css/fontawesome-all.min.css" />
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<div id="main">
<div class="inner">
<!-- Header -->
<div data-include="components/header"></div>
<!-- Section -->
<section>
<header class="main">
<h1>Contact</h1>
</header>
<span class="image main"><img src="/images/rotary_dial_telephone.jpg" alt="Rotary dial telephone" /></span>
<hr class="major" />
<p>Get in touch to ask questions, give feedback on my content, or just to say hello!</p>
<p>Again, no question is a stupid question :)</p>
<p><i>contact.omerbaddour (at) gmail (dot) com</i></p>
<hr class="major" />
<h2>Sources</h2>
<p><strong>Main image</strong>: "Desacuerdo durante una conversación telefónica." by <a href="https://unsplash.com/@quinoal">Quino Al</a>, hosted by <a href="https://unsplash.com/photos/DOoffJXWqxY">Unsplash</a>, <a href="https://unsplash.com/license">license</a></p>
</section>
</div>
</div>
<!-- Sidebar -->
<div id="sidebar">
<div class="inner">
<div data-include="components/sidebar"></div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="/assets/js/jquery.min.js"></script>
<script src="/assets/js/browser.min.js"></script>
<script src="/assets/js/breakpoints.min.js"></script>
<script src="/assets/js/util.js"></script>
<script src="/assets/js/main.js"></script>
<script>
$(function () { /* include other HTML files */
var includes = $('[data-include]')
$.each(includes, function () {
var file = $(this).data('include') + '.html'
$(this).load(file)
})
})
</script>
</body>
</html>