Commit 816450df8d6d21197d529af93f127284649705d7

New frontpage graphics, courtesy of Simon Bohlin

Commit diff

AUTHORS

 
1212-------------
1313
1414A number of people have contributed directly to Gitorious by writing documentation
15or developing code. A list of these people in alphabetical order is included
15or developing code and/or graphics. A list of these people in alphabetical order is included
1616below:
1717
1818 * David A. Cuadrado <krawek@gmail.com>
1919 * August Lilleaas <augustlilleaas@gmail.com>
20 * Simon Bohlin <simon.bohlin@zondera.com>
2021
toggle raw diff

app/views/projects/_project.html.erb

 
1<h3><%= link_to project.title, project_path(project) -%></h3>
1<h3><%= link_to h(project.title), project_path(project) -%></h3>
22<p><%= truncate h(project.stripped_description), 250 -%></p>
33<p class="hint">
44 <strong>Categories:</strong>
toggle raw diff

app/views/site/index.html.erb

 
1111 <% unless logged_in? -%>
1212 <table>
1313 <tr>
14 <th><h2>For Projects</h2></th>
15 <th><h2>For Contributors</h2></th>
14 <th class="left"><h2>For Projects</h2></th>
15 <th class="right"><h2>For Contributors</h2></th>
1616 </tr>
1717 <tr>
18 <td><%= image_tag("overview_projects.png") -%></td>
19 <td><%= image_tag("overview_contributors.png") -%></td>
18 <td class="left"><%= image_tag("overview_projects.png") -%></td>
19 <td class="right"><%= image_tag("overview_contributors.png") -%></td>
2020 </tr>
2121 </table>
2222
toggle raw diff

public/images/overview_contributors.png

 
toggle raw diff

public/images/overview_projects.png

 
toggle raw diff

public/stylesheets/base.css

 
804804 margin-bottom: 4em;
805805 margin-left: auto;
806806 margin-right: auto;
807 width: 910px;
807 width: 888px;
808808 text-align:center;
809809}
810810
811811#site_overview table td, #site_overview table th {
812812 text-align:center;
813 padding: 10px;
813}
814
815#site_overview table td.left, #site_overview table th.left {
816 border-right: 1px dotted #ccc;
817 padding-right: 10px;
818}
819#site_overview table td.right, #site_overview table th.right {
820 padding-left: 10px;
814821}
815822
816823#site_overview p.create_account_hint {
toggle raw diff