-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
69 lines (55 loc) · 2.22 KB
/
default.html
File metadata and controls
69 lines (55 loc) · 2.22 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>{{ page.title }} - {{ site.title }}</title>
<meta content="{{ site.keywords }}" name="keywords">
<meta content="{{ page.description }}" name="description">
<meta property="og:title" content="{{ site.title }} - {{ page.title }}" />
<meta property="og:description" content="{{ page.description }}" />
<meta property="og:image" content="{{ site.production_url }}/assets/images/bg.png" />
<meta property="og:type" content="website" />
<link rel="stylesheet" href="/assets/css/all.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YP11LW5QET"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YP11LW5QET');
</script>
</head>
<body>
<div class="wrapper">
<div class="navbar" role="navigation">
<nav class="menu">
<div class="trigger">
<div class="trigger-container">
<a class="menu-link active" href="/">Home</a> -
<a class="menu-link" href="/about/">Skills</a> -
<a class="menu-link" target="_blank" href="https://www.notion.so/vameri/Vagner-Ribas-0be92a0823d7422c9ae1f194d77f1e6f">Portfolio</a>
</div>
</div>
</nav>
</div>
<header>
<img src="{{ site.production_url }}/assets/images/vameri.jpg" alt="foto vameri" height="100" width="100">
<h2><a href="/" alt="home">Vagner Ribas</a></h2>
<p>UX Designer / Front End</p>
</header>
<section>
{{ content }}
</section>
<footer>
<p>© 2020 @vameri. Powered by Jekyll.</p>
</footer>
</div>
<script src="/assets/js/all.min.js"></script>
{% include analytics.html %}
</body>
</html>