-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (88 loc) · 3.62 KB
/
index.html
File metadata and controls
117 lines (88 loc) · 3.62 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitFriends - A platform for coders</title>
<link rel="shortcut icon" href="https://source.jborgarts.com/GitFriends/source/icons/git-fork.svg">
<!--GitFriends Profile-->
<script src="./source/menus.js"></script>
<script src="https://source.jborgarts.com/GitFriends/source/menus.js"></script>
<script src="https://source.jborgarts.com/GitFriends/source/icons.js"></script>
<script src="https://source.jborgarts.com/GitFriends/source/gitfriends_algorithm.js"></script>
<script src="./source/gitfriends_algorithm.js"></script>
<link rel="stylesheet" href="https://source.jborgarts.com/GitFriends/source/bulma/css/bulma.css">
</head>
<body onload="topMenu_load(), profileRec(), footMenu_load()">
<header>
<div id="topMenu">
<!--./menus.js-->
</div>
</header>
<section style="padding: 10%;">
<div class="content">
<h1>Welcome to</h1>
<p>
<img src="./source/GitFriends.svg" width="50%" alt="">
</p>
</div>
</section>
<section style="padding-left: 10%; padding-right: 10%;">
<div class="content">
<p>
GitFriends is a networking platform for developers and programmers. Users get to <i>make</i> their own profiles - unlike every other platform out there.
</p>
<p>While GitFriends' users do need to abide by our and GitHub's content policies, users here have more freedom and creativity than any other networking platform created. Users not only get the opportunity to contribute the code that makes up their profiles, but they get to style it and make it their own.</p>
<p>So what are you waiting for? Time to Git some friends!</p>
</div>
</section>
<section style="padding: 10%;">
<div class="content">
<h2>Suggested Content</h2>
</div>
<!--Profile Content-->
<div class="card">
<div class="card-content">
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<img
src=""
alt="User icon"
id="profileIcon_1"
/>
</figure>
</div>
<div class="media-content">
<p id="profileName_1" class="title is-4"> <!--Controlled by algorithm script--></p>
<p id="profileGit_1" class="subtitle is-6"> <!--Controlled by algorithm script--></p>
</div>
</div>
<div class="content">
<div id="profileTagline_1">
<!--Controlled by algorithm script-->
</div>
<a id="profileLink_1">
<!--Controlled by algorithm script-->
</a>
</div>
</div>
</div>
</section>
<section style="padding-left: 10%; padding-right: 10%; padding-bottom: 35px;">
<center><div class="content">
<h2>Like what ya see?</h2>
<p>
<a href="https://github.com/JacobBorgProgramming/GitFriends/wiki/Scripting-A-Profile" target="_blank"><button class="button is-white">Make a Profile</button></a>
</p>
</div></center>
</section>
<section style="padding-left: 10%; padding-right: 10%; padding-bottom: 35px;">
<div class="content">
<center><embed src="./source/search.html" width="70%" height="300" style="overflow-y: auto;"></center>
</div>
</section>
<footer class="footer" id="footMenu">
</footer>
</body>
</html>