comparison templates/index.djhtml @ 80:eaa36eaaf74a

Start integration of new design * New stylesheets, templates, javascript, and images * Added some new template files with filler content for now. * Split up the contents of the static/ directory into img/, js/ and css/ Still in progress. Snippet-posting and -viewing will come soon.
author dellsystem <ilostwaldo@gmail.com>
date Fri, 24 Aug 2012 17:09:07 -0400
parents cd71470af46c
children cf741f0c5255
comparison
equal deleted inserted replaced
79:96ad476f52df 80:eaa36eaaf74a
1 {% extends "whitebox.djhtml" %} 1 {% extends "whitebox.djhtml" %}
2 2
3 {% block navbar %}
4 {% endblock %}
5
6 {% block billboard %}
7 <div id="billboard">
8 <div class="grid">
9 <div class="wrap center-align">
10 <h1>
11 Agora Octave enables <strong>rapid collaboration</strong> and
12 <strong>code&#8209;sharing</strong> for users of
13 <a href="http://octave.org">GNU Octave</a>.
14 </h1>
15 <!--<div id="login-box"></div>-->
16 </div>
17 </div>
18 </div>
19 <div id="billboard-below">
20 </div>
21 {% endblock %}
22
3 {% block content %} 23 {% block content %}
4 <div class="info"> 24 <div id="info-box" class="row">
5 <h3> 25 <div class="span3">
6 Welcome 26 <div class="center-align">
7 </h3> 27 <img src="/static/img/browse.png" />
8 <div class="whitebox"> 28 <h2>Browse code submissions</h2>
29 </div>
30 <p>
31 Some copy about how you can browse through the code until you
32 find what you want. They can be snippets or bundles. You can
33 contribute your own changes, maybe. You can even install them
34 as octave packages. More text to fill up line.
35 </p>
36 </div><div class="span3">
37 <div class="center-align">
38 <img src="/static/img/snippet.png" />
39 <h2>Post a snippet</h2>
40 </div>
41 <p>
42 Just want to post a quick snippet of code? Do it in the pastebin.
43 You don't even have to be registered. Though we'd need some sort
44 of spam-protection measures in that case. Plus, syntax highlighting!
45 </p>
46 </div><div class="span3">
47 <div class="center-align">
48 <img src="/static/img/upload.png" />
49 <h2>Share your code</h2>
50 </div>
51 <p>
52 For larger pieces of code, we have bundles. Mercurial integration,
53 select a license. Sharing made easy. Forge for installing packages,
54 eventually. Some more text just to fill up the space. Lorem ipsum,
55 etc. You do have to be signed up to upload something, though.
56 </p>
57 </div>
58 </div>
59
60 <div class="center-align">
61 <p><a href="{% url code %}" class="button large">Explore</a>
62 <a href="{% url registration_register %}" class="button large">
63 Register an account
64 </a></p>
9 <p> 65 <p>
10 Agora Octave is a place dedicated for rapid collaboration related 66 You can sign up, if you want, won't share your email, not required, etc
11 to <a href="http://octave.org">GNU Octave</a>. You
12 can <a href="/latest">browse our code submissions</a>
13 or <a href="accounts/login">contribute your own</a>.
14 </p> 67 </p>
15 </div>
16 </div> 68 </div>
17 <div class="info"> 69
18 <h3>
19 Recent submissions
20 </h3>
21 <div class="whitebox">
22 <p>
23 <a href="http://inversethought.com/hg/hgwebdir.cgi/agora/">HELP US BUILD THIS
24 SITE!</a> Clone the source and start contributing.
25 </p>
26 </div>
27 </div class="info">
28 {% endblock %} 70 {% endblock %}