forked from emmairwin/old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
75 lines (66 loc) · 3.04 KB
/
template.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
<!doctype html>
<head>
<title>Heather's FOSS Profile</title> <!-- Your name (or psuedonym!) here. -->
<link rel="stylesheet" href="./static/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="./static/css/style.css" type="text/css">
</head>
<body class="home page" data-spy="scroll" data-target="#sidenav" screen_capture_injected="true">
<div class="container-fluid">
<div class="jumbotron">
<center><h1>Heather's Profile</h1></center> <!-- Your name (or psuedonym!) here. -->
<p>"The source will be with you. Always."</p> <!-- Or you can put your own quote! -->
<a type="button" class="btn btn-lg btn-primary" href="../index.html" id="actsignup">Visit my friends</a>
</div>
<div class="row">
<div class="col-md-6 padded">
<h3>I am...</h3>
<p>Currently working in non-profit operations, but changing careers into computer science. </p> <!-- Customizable! -->
</div>
<div class="col-md-6 white padded">
<h3>I'm interested in FOSS because...</h3>
<p>I'm interested in learning more about programming through contributing. I also think open source projects spark innovation much more than anything that is proprietary. </p> <!-- Customizable! -->
</div>
</div>
<div class="row green padded">
<div class="col-md-3">
<div class="list-group">
<a href="#" class="list-group-item active">
<b>I want to contribute to:</b> <!-- Customizable! -->
</a>
<a href="#" class="list-group-item">project 1</a>
<a href="#" class="list-group-item">project 2</a>
<a href="#" class="list-group-item">project 3</a>
<a href="#" class="list-group-item">project 4</a>
</div>
</div>
<div class="col-md-3">
<div class="list-group">
<a href="#" class="list-group-item active">
<b>I want to learn:</b> <!-- Customizable! -->
</a>
<a href="#" class="list-group-item">How to get started contributing.</a>
<a href="#" class="list-group-item">Ways to improve my coding.</a>
<a href="#" class="list-group-item">Ways to contribute besides coding.</a>
</div>
</div>
<div class="col-md-6">
<a href="#" class="list-group-item active">
<b>My contribution log:</b>
</a>
<a href="#" class="list-group-item">Here's a description of a contribution I've made, and a link to where you can see it/find out more!</a>
<a href="#" class="list-group-item">Here's a description of a contribution I've made, and a link to where you can see it/find out more!</a>
<a href="#" class="list-group-item">Here's a description of a contribution I've made, and a link to where you can see it/find out more!</a>
</div>
</div>
<div class="bluestripe">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-8">
<h4 class="pull-right">A project of <a href="https://openhatch.org/"><img src="https://openhatch.org/w/images/thumb/a/a6/Openhatch-logo.png/500px-Openhatch-logo.png" width="100px"></a></h4>
</div>
</div>
</div>
</div>
</div>
</body>
</html>