Initial symfony commit

This commit is contained in:
goo
2012-09-19 13:34:22 +10:00
parent 3128a6366b
commit fd1ab5f78e
81 changed files with 10309 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{% extends "BodyRep::layout.html.twig" %}
{% block title "BodyRep - About Us" %}
{% block content %}
{% include 'BodyRep:Landing:navbar.html.twig' %}
About
{% endblock %}

View File

@@ -0,0 +1,12 @@
{% extends 'BodyRep::layout.html.twig' %}
{% block title %}BodyRep - Welcome{% endblock %}
{% block content_header '' %}
{% block content %}
{% include 'BodyRep:Landing:navbar.html.twig' %}
Landing Page
{% endblock %}

View File

@@ -0,0 +1,18 @@
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<img src="/img/logo-nav.png" class='pull-left' style='padding-right : 5px; margin-top : 10px;' />
<a class="brand" href="#">BODY<b>REP</b></a>
<div class="btn-group pull-right">
<a class="btn " href="{{ path('_member') }}" style="background : transparent; color : white; text-shadow : none; border : none; box-shadow : 0 0 0 #fff;">
<i class="icon-user icon-white"></i> Login
</a>
</div>
</div>
</div>
</div>