-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (90 loc) · 3.61 KB
/
index.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
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
<!DOCTYPE! html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Carolina's Portfolio</title>
<meta name="viewport" content="width=device-width" initial-scale="1">
<link rel="stylesheet" type="text/css" href="style/base.css">
<link rel="stylesheet" type="text/css" href="normalize.css">
<link rel="stylesheet" type="text/css" href="icon.css">
<link rel="stylesheet" type="text/css" href="style/module.css">
<link rel="stylesheet" type="text/css" href="style/layout.css">
<script id="project-template" type="text/x-handlebars-template">
<article data-project="{{title}}">
<header>
<h2><a href="{{url}}">{{title}}</a></h2>
<time pubdate="">{{publishStatus}}</time>
</header>
<section class="aboutProj">{{{about}}}</section>
</article>
</script>
<script id="title-template" type="text/x-handlebars-template">
<li><strong>{{name}}</strong>: {{numWords}} words written</li>
</script>
<script id='repo-template' type="text/x-handlebars-template">
<li>
<a href="{{html_url}}" target="_blank"><h3>{{name}}</h3></a>
<p>Description: {{description}}</p>
<p>Language: {{language}}</p>
<p>Created: {{created_at}}</p>
<p>Last updated: {{updated_at}}</p>
</li>
</script>
</head>
<body>
<div id="toggleNav" class="icon-menu"></div></br>
<header id="mainHeader">
<h1>Web Development Portfolio</h1>
<p>Developer: Carolina Ceja</p>
</header>
<nav id="mainNav">
<ul>
<li class="navSelect icon-home" data-content="project-section" id="home"><a href="/">Home</a></li>
<li class="navSelect icon-newspaper" data-content="about"><a href="/about">About</a></li>
<li class="navSelect icon-home" data-content="git-section"><a href="/git">Github</a></li>
</nav>
<main>
<section id="project-section" class="tab-content">
<ul>
<li>
<select id="project-filter">
<option value="">Select a Project</option>
</select>
</li>
</ul>
</section>
<section id="about" class="tab-content">
<h2>Welcome to my portfolio!</h2>
<h3>About the Developer:</h3>
<p>Current Code Fellows 301 student. This page compiles my most recent projects.</p>
<h3>Project Stats:</h3>
<p id="stats-section"></p>
</section>
<section id="gitWork" class="tab-content">
<header>
A list of all projects I have worked on in some form
</header>
<section>
<h1>All of these projects can be found in my Github account:</h1>
<ul>
<li>Coding</li>
</ul>
</section>
</section>
</main>
<script src="scripts/page.js"></script>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0/handlebars.js"></script>
<script src="githubToken.js"></script>
<script src="scripts/app.js"></script>
<script src="scripts/projectView.js"></script>
<script src="scripts/projectsController.js"></script>
<script src="scripts/aboutController.js"></script>
<script src="scripts/repoController.js"></script>
<script src="scripts/repo.js"></script>
<script src="scripts/repoView.js"></script>
<script src="routes.js"></script>
</body>
</html>
<!-- <script src="marked.js"></script> need to get files to either/both and add to html files
<script src="highlight.pack.js"></script> -->