-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
518 additions
and
354 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,4 @@ branches: | |
only: | ||
- master | ||
- develop | ||
- feature/fine-grained-authorization |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{% extends 'MopaBootstrapBundle::base.html.twig' %} | ||
|
||
{% block title %} | ||
{% if block('page_title') is not empty %}{{ block('page_title') }} — {% endif %} | ||
{{ 'app.name'|trans }} | ||
{% endblock title %} | ||
|
||
{% block head_style %} | ||
|
||
<style type="text/css"> | ||
body { | ||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
} | ||
.registration-print-options { | ||
display: none !important; | ||
} | ||
.pull-right { | ||
float: right; | ||
} | ||
.clearfix { | ||
float: none; | ||
} | ||
.page-header { | ||
height: 100px; | ||
} | ||
.page-header h1 { | ||
padding-top: 14px; | ||
} | ||
</style> | ||
|
||
{% endblock head_style %} | ||
{% block head_bottom %} | ||
{% endblock head_bottom %} | ||
|
||
{% block navbar %} | ||
{% endblock navbar %} | ||
|
||
{% block header %} | ||
{% endblock header %} | ||
|
||
{% block page_header %} | ||
<div class="page-header clearfix"> | ||
<img src="file://{{ root_path }}/../web/images/header-logo.png" class="pull-right logo" alt="OpenConext Stepup" style="width:55mm;"> | ||
<h1>{{ 'app.name'|trans }}</h1> | ||
</div> | ||
{% endblock page_header %} | ||
|
||
{% block content_row %} | ||
{% block content %} | ||
{% endblock content %} | ||
{% endblock content_row %} | ||
|
||
{% block footer %} | ||
{% endblock footer %} | ||
|
||
{% block foot_script %} | ||
|
||
{% endblock foot_script %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.