Gumby -> Scratch CSS

This commit is contained in:
Marc Ducobu 2014-11-10 12:25:55 +01:00
parent 8af6aee31e
commit 8b0c08154e
2 changed files with 45 additions and 57 deletions

View File

@ -1,65 +1,55 @@
{% extends "ChillMainBundle::layout.html.twig" %} {% extends "ChillMainBundle::layout.html.twig" %}
{% block css %} {% block css %}
{% stylesheets output="css/all.css" filter="cssrewrite" {% stylesheets output="css/all.css" filter="cssrewrite"
"bundles/clchillperson/css/person.css" "bundles/chillperson/css/person.css"
%} %}
<link rel="stylesheet" href="{{ asset_url }}"/> <link rel="stylesheet" href="{{ asset_url }}"/>
{% endstylesheets %} {% endstylesheets %}
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<div id="person_wrapper"> <div id="person_wrapper">
<div id="general"> <div id="general">
<h1> <h1>
<span class="surname">{{ person.surname }}</span> <span class="surname">{{ person.surname }}</span>
<span class="personName">{{ person.name }}</span> {% spaceless %} <span class="personName">{{ person.name }}</span> {% spaceless %}
{% if person.isOpen == false %} {% if person.isOpen == false %}
<i class="icon-lock"></i> <i class="icon-lock"></i>
{% endif %} {% endif %}
{% endspaceless %} {% endspaceless %}
</h1> </h1>
<p class="date detail">{% spaceless %} <p class="date detail">{% spaceless %}
{% if person.dateOfBirth == null %} {% if person.dateOfBirth == null %}
{{ 'person.without_date_of_birth'|trans }}, {{ ('person.gender.' ~ {{ 'person.without_date_of_birth'|trans }}, {{ ('person.gender.' ~
person.genre)|trans }} person.genre)|trans }}
{% else %}
{% transchoice person.genreNumeric
with {'%date%' : person.dateOfBirth.format('d-m-Y')} %}views.layout.born{% endtranschoice %}
{% endif %}
{% endspaceless %}</p>
{% if person.nationality is not null %}
<p class="nationality detail">{{ person.nationality.label }}</p>
{% else %} {% else %}
{% transchoice person.genreNumeric <p class="nationality detail without_nationality">{% trans %}views.layout.without_nationality{% endtrans %}</p>
with {'%date%' : person.dateOfBirth.format('d-m-Y')} %}views.layout.born{% endtranschoice %} {% endif %}
{% endif %}
{% endspaceless %}</p>
{% if person.nationality is not null %}
<p class="nationality detail">{{ person.nationality.label }}</p>
{% else %}
<p class="nationality detail without_nationality">{% trans %}views.layout.without_nationality{% endtrans %}</p>
{% endif %}
</div> </div>
<div id="person_details"> <div id="person_details">
<section class="container">
{# Note: activeRouteKey should be defined in Controller or child layout #}
<section class="tabs vertical"> {{ chill_menu('person', {
{# Note: activeRouteKey should be defined in Controller or child layout #} 'layout': 'ChillPersonBundle::menu.html.twig',
{{ chill_menu('person', { 'args' : {'person_id': person.id },
'layout': 'ChillPersonBundle::menu.html.twig', 'activeRouteKey': activeRouteKey
'args' : {'person_id': person.id }, }) }}
'activeRouteKey': activeRouteKey
}) }}
<div class="tab-content active columns height"> <div class="grid-8">
{% block personcontent %}<!-- block personcontent empty -->{%endblock%}
{% block personcontent %}<!-- block personcontent empty -->{%endblock%} </div>
</div>
</section> </section>
</div> </div>
</div> </div>
{% endblock %}
{% endblock %}

View File

@ -1,15 +1,13 @@
<div class="columns four"> <div class="grid-12">
<ul class="tab-nav follow-href-path"> <ul class="tab-nav follow-href-path">
{% for route in routes %} {% for route in routes %}
<li class="{% spaceless %} <li class="{% spaceless %}
{% if route.key == activeRouteKey %} {% if route.key == activeRouteKey %}
active active
{% endif %} {% endif %}
{% endspaceless %} "> {% endspaceless %} ">
<a href="{{ path(route.key, args ) }}" >{{ route.label|trans }}</a> <a href="{{ path(route.key, args ) }}" >{{ route.label|trans }}</a>
</li> </li>
{% endfor %}
{% endfor %}
</ul> </ul>
</div> </div>