Skip to content
This repository was archived by the owner on Jan 15, 2022. It is now read-only.

Commit 11cde75

Browse files
committed
Reorg templates
1 parent bd34e55 commit 11cde75

10 files changed

Lines changed: 33 additions & 14 deletions

File tree

USAGE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# USAGE
22

3-
This document explains the basic functions of _} dribdat {_, an open source platform for data-driven team collaboration, such as *Hackathons*.
3+
This document explains the basic functions of `} dribdat {`, an open source platform for data-driven team collaboration, such as *Hackathons*.
44

55
For more background and references, see [ABOUT](ABOUT.md) and [README](README.md).
66

77
## How does it look?
88

9-
} dribdat { works as a website and project board for running exciting, productive events, and allows organizers and participants to collect their project details in one place, displaying the challenges and projects in Web dashboards, and plugging in community tools such as [Discourse](https://www.discourse.org/), [Slack](http://slack.com), or [Let's Chat](http://sdelements.github.io/lets-chat/) - or using the [remote API](#api) for additional interfaces such as [chatbots](https://github.com/schoolofdata-ch/dridbot) to enhance the hackathon.
9+
Dribdat works as a website and project board for running exciting, productive events, and allows organizers and participants to collect their project details in one place, displaying the challenges and projects in Web dashboards, and plugging in community tools such as [Discourse](https://www.discourse.org/), [Slack](http://slack.com), or [Let's Chat](http://sdelements.github.io/lets-chat/) - or using the [remote API](#api) for additional interfaces such as [chatbots](https://github.com/schoolofdata-ch/dridbot) to enhance the hackathon.
1010

11-
Logged-in users can submit challenges, ideas and projects by linking their document or repository, or entering details directly into a form. You can change or customize these [instructions](dribdat/templates/quickstart.html) as you see fit.
11+
Logged-in users can submit challenges, ideas and projects by linking their document or repository, or entering details directly into a form. You can change or customize these [instructions](dribdat/templates/includes/quickstart.html) as you see fit.
1212

1313
![](dribdat/static/img/screenshot_start.png)
1414

File renamed without changes.
File renamed without changes.
File renamed without changes.

dribdat/templates/layout.html

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
<!doctype html>
2-
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
2+
<!--
3+
M A Y T H E S O U R C E B E W I T H Y O U E X C E L L E N T B E I N G !
4+
.#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5+
.@@@@@@@@@@@@@@@@@@@@@@@@@@@@&##%@@@@@@@@@@@@@@@@@@@@@@@# @@@@@@@@@@@@@@@@@@@@@@@@@@@@(
6+
.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%######@@@@@@@@@@@@@@@@@@@/ *@@@@@@@@@@@@@@@@@@@@@@@@@@@@/
7+
#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#######@@@@@@@@@@@@@@@@@@@ (@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
8+
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@########%@@@@@@@@@@@@@@@@@@@# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@.
9+
&@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#########@@@@@@@@@@@@@@@@@@@@@. .@@@@@@@@@@@@@@@@@@@@@@@@@@@@
10+
,@@@@@@@@@@@@@@@@@@@@@@@@@@@####################%@@@# @@@@@@@@@@@@@@@@@@@@@@@@@@%
11+
&@@@@@@@@@@@@#########%@@#########################@* &@@/ #@@@@@@@@@@@@
12+
@@@@@@@@@@@@@#########%@&#########################@* @@/ #@@@@@@@@@@@@,
13+
@@@@@@@@@@@@@#########&@%########################&@& @@/ #@@@@@@@@@@@@.
14+
(@@@@@@@@@@@@#########&@%########################@@@. @@/ #@@@@@@@@@@@&
15+
@@@@@@@@@@@@#########&@%#######################%@@@% @@/ #@@@@@@@@@@@*
16+
.@@@@@@@@@@@###&@&###&@%#######################@@@@@. @@/ @@% #@@@@@@@@@@#
17+
.@@@@@@@@@@%########@@%######################%@@@@@@ @@/ #@@@@@@@@@(
18+
&@@@@@@@@@&&&&&&@@@@@@%###################%@@@@@@@@ .,#@@#********%@@@@@@@@.
19+
.@@@@@@@@@@@@@@@@@@@@@@@@@@@@&%%#####%%@@@@@@@@@@@@@*. .,,(%@@@@@@@@@@@@@@@@@@@@@@@@@@@/
20+
&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,
21+
THIS EVENT WAS PRODUCED WITH HELP FROM DRIBDAT.CC - OPEN SOURCE HACKATHON PLATFORM
22+
-->
323
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
424
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
525
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
@@ -20,7 +40,7 @@
2040
<body class="{% block body_class %}{% endblock %}">
2141
{% block body %}
2242
{% with form=form, tabs=tabs, event=current_event %}
23-
{% include "nav.html" %}
43+
{% include "includes/nav.html" %}
2444
{% endwith %}
2545

2646
<header>{% block header %}{% endblock %}</header>
@@ -47,15 +67,17 @@
4767

4868
</div><!-- end container -->
4969

50-
{% include "footer.html" %}
70+
{% include "includes/footer.html" %}
5171

52-
<!-- JavaScript at the bottom for fast page loading -->
72+
<!-- Standard scripts -->
5373
{% assets "js_all" %}
5474
<script type="text/javascript" src="{{ ASSET_URL }}"></script>
5575
{% endassets %}
5676
{% block js %}{% endblock %}
57-
<!-- end scripts -->
58-
{% endblock %}
77+
78+
{% include "includes/analytics.html" %}
79+
80+
{% endblock %}<!-- /body -->
5981

6082
{% block css %}{% endblock %}
6183
</body>

dribdat/templates/macros/_ask_user_to_update_ie.html

Lines changed: 0 additions & 3 deletions
This file was deleted.

dribdat/templates/public/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h3>Overview</h3>
2222
<p>The <b>Projects, Challenges and Resources</b> are shown on the event home page. Here you can learn about topics, datasets, and any other information the organisers have provided. Once the event has started, and you have formed a team, you can <a href="/register/">login</a> and <a href="#" class="btn btn-success disabled">Share project</a></p>
2323
</div><div class="row">
2424
<h3>Quickstart</h3>
25-
{% include "quickstart.html" %}
25+
{% include "includes/quickstart.html" %}
2626
</div><div class="row">
2727
<h3>For organisers</h3>
2828
<p>All of the content on the site, including presentation of the header, can be edited by the site administrator in the <b>Admin</b> menu linked in the header if you have access: from where you can edit general details under <b>Events</b>, publish <b>Categories</b>, and edit or sync <b>Projects</b> and <b>Challenges</b> (which are either a Category, or just a project in challenge status).</p>

dribdat/templates/public/projectnew.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ <h2>Start something awesome!</h2>
1212
{% if current_event.boilerplate %}
1313
{{current_event.boilerplate|markdown}}
1414
{% else %}
15-
{% include "quickstart.html" %}
15+
{% include "includes/quickstart.html" %}
1616
{% endif %}
1717
</div>
1818
</div>

0 commit comments

Comments
 (0)