{% extends "layout.html" %}
{% block title %}SlapOs buildout web based runner {% endblock %}
{% block body %}
<div id="home_box">
<div class="inner_box">
<div class="lmenu">
    <h2><a href="{{ url_for('configRepo')}}">Create a new Project from your repository</a></h2>
    <p>Your repository will be cloned into your project folder, you will need the url of the repository. 
    This allows you to open and edit your local project copy and synchonize content with online repository.
    </p>
    <img src="{{ url_for('static', filename='images/folder_html.png') }}" />
    <div class="clear"></div>
</div>
<div class="smenu">
    <h2><a href="{{ url_for('openProject', method='open')}}">Open Software Release</a></h2>
    <p>Once you have cloned your repository, you can now edit existing Software Release.</p>
    <img src="{{ url_for('static', filename='images/mydocuments.png') }}" />
    <div class="clear"></div>
</div>
<div class="sright_menu">
    <h2><a href="{{ url_for('manageProject')}}">Manage your Projects</a></h2>
    <p>You can view details of all projects and commit your Software Release here.</p>
    <img src="{{ url_for('static', filename='images/manage_repo.png') }}" />
</div>
<div class="clear"></div>
<div class="lmenu">
    <h2><a href="{{ url_for('openProject', method='new')}}">Create your new Software Release</a></h2>
    <p>To create a new Software Release, choose the project directory in which you want to create your software. You will then be able to edit and
    run the new software on SlapOs, using webrunner tools.
    </p>
    <img src="{{ url_for('static', filename='images/folder_blue.png') }}" />
    <div class="clear"></div>
</div>
</div>
</div>
{% endblock %}