sencha-web/templates/source.html

22 lines
657 B
HTML

{% extends "layout.html" %}
{% block body %}
<script type="text/javascript">
//Change active button in navbar
$("document").ready( function(){
$("li").removeClass("active");
$("#source").addClass("active");
});
</script>
<div class="hero-unit">
<h3>Source code</h3>
<p>You can view source code <a class="btn btn-large" href="http://git.hackerspace.pl/attero/sencha-lang/tree/">here</a>
It's a git repository and code there is always up to date. You can also search branches and older revision.
Downloads is free.
<h3>Forking</h3>
<p>It's a great idea. If you want to add something, you should :) </p>
</div>
{% endblock %}