-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (30 loc) · 1.24 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
<template name="index">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trans*Network</title>
</head>
<body>
{{> nav_bar}}
<div class="container">
<div style="position: relative;" class="anchor-point">
<img class="logo" src="img/logo_home.png"/>
<div class="questions">
<h1><a href="{{ pathFor 'questions' }}">Questions</a></h1>
<p><a href="{{ pathFor 'questions#askq' }}">Ask</a> and <a href="{{ pathFor 'questions#unanswered' }}">answer</a> questions</p>
</div>
<div class="stories">
<h1><a href="{{ pathFor 'stories' }}">Stories</a></h1>
<p><a href="{{ pathFor 'stories' }}">Read</a> others' stories <br> and <a href="{{ pathFor 'storiesMyStory' }}">edit</a> your story</p>
</div>
<div class="mentors">
<h1><a href="{{ pathFor 'mentoring' }} ">Mentoring</a></h1>
<p><a href="{{ pathFor 'request' }}">Request a mentor</a> or <a href="{{ pathFor 'become' }}">become a mentor</a>!</p>
</div>
</div>
</div>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</template>