generated from Momentum-Team-13/project-page-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (76 loc) · 2.65 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
<!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.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/octicons/8.5.0/build.css"
integrity="sha512-oXqkIy/+iqrHrpoTwFkSLZJpNwoYn9e77QtCNzBi+Jb6uJgTtcdHVy0C+nEpeUfC3fxSbydPxLG+ndikNVvrdQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"
/>
<link rel="stylesheet" href="bulma-list.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<script src="devData.js"></script>
<script src="script.js" defer></script>
<title>Momentum Phase 3</title>
</head>
<body>
<nav
class="navbar is-justify-content-space-between"
role="navigation"
aria-label="main navigation"
>
<div class="navbar-brand">
<a class="navbar-item" href="https://momentumlearn.com">
<img
src="momentum__logo-digital-royal.png"
alt="Momentum logo"
class="image"
/>
</a>
</div>
<div class="subtitle navbar-item has-text-weight-medium">
Progress Report For Insight Software
</div>
</nav>
<main class="container.is-max-desktop p-5">
<section class="project-details is-medium">
<div class="project-description my-5">
<h2 class="subtitle has-text-weight-semibold">
Phase 3: Advanced Front-End
<span class="is-italic">or</span> Advanced Back-end
</h2>
<p class="block">
After an introduction to both front- and back-end development in the
first two phases, learners chose to focus on either front-end or
back-end development in the third phase.
</p>
<p class="block">
Our beginner back-end developers took on building APIs in Python
using Django REST Framework. Front-end developers learned how to
build single-page applications using React.
</p>
<p class="block">
For the end-of-phase project, developers worked on teams to create a
single application, with a React front-end and a Django API
back-end.
</p>
</div>
</section>
<section
id="dev-list"
class="dev-list list is-medium"
style="--length: 25"
>
<h2 class="subtitle has-text-weight-semibold">Developers</h2>
</section>
</main>
</body>
</html>