Plantilla para pagina clientes
This commit is contained in:
39
views/page-clientes.twig
Normal file
39
views/page-clientes.twig
Normal file
@@ -0,0 +1,39 @@
|
||||
{% extends "base.twig" %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<div id="page" class="{{post.slug}}">
|
||||
|
||||
<div class="page-header mb-5 pb-5" style="background-image:url({% if post.thumbnail %}{{post.thumbnail|resize(1440,400)}}{% else %}{{site.theme.link}}/public/img/cabecera-provisional.jpg{% endif %}); background-repeat:no-repeat; background-position:center center; background-size:cover;">
|
||||
<div class="overlay bg-gradient-1">
|
||||
<div class="container pb-5 h-100">
|
||||
<div class="d-flex h-100 justify-content-center align-items-end">
|
||||
<h1 class="title text-white">{{post.title}}</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-content pb-3">
|
||||
<div class="container">
|
||||
{{post.content}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{#% for grupo in post.meta('categoria_de_cliente') %}
|
||||
|
||||
{{grupo.titulo}}
|
||||
|
||||
{% for info in grupo.client_info %}
|
||||
<a href="{{ info.enlace }}">
|
||||
<img src="{{ info.logotipo.url }}" />
|
||||
{{info.nombre}}
|
||||
</a>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
{% endfor %#}
|
||||
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user