-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathindex.html
83 lines (70 loc) · 3.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<title>Title Here!</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/starter-template.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand">HILT Portfolio</a>
</div>
</div>
</nav>
<div class="container">
<div class="starter-template">
<h1>A most excellent HILT portfolio</h1>
<p class="lead"> Welcome! This is a basic template for a portfolio site
(built with <a href="https://getbootstrap.com/docs/3.3/">Bootstrap</a>)
that we will use to practice our GitHub skills and house the various
projects you work on this week.
</div>
<div style="text-align: center ">
<!---Greetings HILT 2018 user! This is the section of this html file where
you will be loading your various projects from our class. For those unfamiliar
with HTML we've tried to make clear what should go where, but obviously
we will be happy to answer questions / go over all this stuff many times!
The general idea is this: save your .py file to the folder "python" within
this repository, then link to that file in the descriptions of each item within
this list. The for example, the first item with its link might look like this:
<p>With a description + link <a href="python/file1.py">here</a>.</p>
Then you would replace "With adescription + link" with whatever description
you wanted, and replacing the name of the file with whatever name you
want. Please ask if you have questions!!!-->
<h4>Your first project</h4>
<div class="text-muted">
<p>With a description + link <a href="python/file1.py">here</a>.</p>
</div>
<h4>Your second project</h4>
<div class="text-muted">
<p>With yet another description + link <a href="">here</a>.</p>
</div>
<h4>And so on</h4>
<div class="text-muted">
<p>And so on!</p>
</div>
</div>
</div><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>