This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
homepage-2017/templates/challenge.html

129 lines
4.0 KiB
HTML
Raw Normal View History

2017-10-07 17:55:52 +00:00
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0" />
2017-10-08 09:22:08 +00:00
<title>k-space</title>
2017-10-07 17:55:52 +00:00
<link href="https://fonts.googleapis.com/css?family=Orbitron" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
2017-10-07 21:58:20 +00:00
<link rel="stylesheet" href="/static/css/materialize.min.css">
<link rel="stylesheet" href="/static/css/app.css">
2017-10-07 17:55:52 +00:00
</head>
<body>
<div id="container" class="grey lighten-4">
<div class="header section center-align">
2017-10-07 22:50:40 +00:00
<h1 class="section darken-2 z-depth-1 white-text"><a href="/">k-space.ee</a></h1>
2017-10-07 17:55:52 +00:00
</div>
<br/><br/><br/>
2017-10-08 09:17:51 +00:00
<div class="row container">
<div class="row">
<div class="col m8">
2017-10-08 09:22:08 +00:00
<h3 class="">{{ challenge.name }}</h3>
2017-10-08 09:17:51 +00:00
<div>
2017-10-08 09:22:08 +00:00
{% for tag in challenge.tags.all %}
<div class="chip">{{ tag.name }}</div>
{% endfor %}
2017-10-08 09:17:51 +00:00
</div>
2017-10-08 09:22:08 +00:00
<p style="">{{ challenge.description }}
2017-10-08 09:17:51 +00:00
</p>
<div class="section">
<p>I am usually at k-space on weekends. Come and take a look.</p>
<div class="valign-wrapper"><i class="material-icons">email</i>&nbsp; eric.cartman@email.com</div>
<br>
<div class="valign-wrapper"><i class="material-icons">phone</i>&nbsp;55 55 5555</div>
2017-10-07 17:55:52 +00:00
</div>
2017-10-08 09:17:51 +00:00
2017-10-07 17:55:52 +00:00
</div>
2017-10-08 09:17:51 +00:00
<div class="col m4">
<ul class="collection">
<li class="collection-item avatar">
<img src="https://vignette.wikia.nocookie.net/southpark/images/0/0d/1a.jpg/revision/latest/scale-to-width-down/310?cb=20100826182516" alt="" class="circle">
<span class="title">Author</span>
2017-10-08 09:22:08 +00:00
<p><b>{{ challenge.creator.username }}</b></p>
2017-10-08 09:17:51 +00:00
</li>
<li class="collection-item">
<span class="title">Programming</span>
</li>
<li class="collection-item">
<span class="title">Soldering</span>
</li>
</ul>
<ul class="collection with-header">
<li class="collection-header">
<span class="title"><b>What we need</b></span>
</li>
<li class="collection-item">
<span class="">CNC bench experience</span>
</li>
<li class="collection-item">
<span class="title">Screwdriver</span>
</li>
</ul>
</div>
2017-10-07 17:55:52 +00:00
</div>
</div>
<!-- dashboard custom -->
<footer class="page-footer">
2017-10-08 00:11:04 +00:00
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Contact</h5>
<p class="grey-text text-lighten-4">
<i class="material-icons">phone</i>&nbsp;Call Lauri 55 55 5555
</p>
<h5 class="white-text">Sponsors</h5>
<p class="grey-text text-lighten-4">
We have more than 10 companies supporting us financially and by equipment
</br>
<a href="#">I want to become a sponsor</a>
</p>
2017-10-07 17:55:52 +00:00
</div>
2017-10-08 00:11:04 +00:00
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Links</h5>
<ul>
<li><a class="grey-text text-lighten-3" href="#!">Location</a></li>
<li><a class="grey-text text-lighten-3" href="#!">Mission</a></li>
<li><a class="grey-text text-lighten-3" href="#!">People</a></li>
</ul>
2017-10-07 17:55:52 +00:00
</div>
</div>
2017-10-08 00:11:04 +00:00
</div>
<div class="footer-copyright">
<div class="container">
© 2017 k-space
<!-- <a class="grey-text text-lighten-4 right" href="#!">More Links</a> -->
</div>
</div>
2017-10-07 17:55:52 +00:00
</footer>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/js/materialize.min.js"></script>
2017-10-07 21:58:20 +00:00
<script src="/static/js/app.js"></script>
2017-10-07 17:55:52 +00:00
</body>
</html>