diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-03-20 19:58:23 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-03-20 19:58:23 +0100 |
commit | b4edd4e6cb15dab61feaf3d9a3e9499845ef12bf (patch) | |
tree | dfdec150a658ce2f85dd95e4415060548f3dd671 | |
parent | 0447cd8999c96e9faac20ee8b58c8f6c978f56b7 (diff) |
Add container and jumbotron.
-rw-r--r-- | index.mdwn | 4 | ||||
-rw-r--r-- | templates/container.mdwn | 3 | ||||
-rw-r--r-- | templates/jumbotron.mdwn | 3 |
3 files changed, 10 insertions, 0 deletions
@@ -3,6 +3,8 @@ [[!meta script="/usr/share/javascript/jquery/jquery.min.js"]] [[!meta script="/usr/share/javascript/bootstrap/js/bootstrap.min.js"]] +[[!template id=container content=<<CONTAINER +[[!template id=jumbotron content=<<JUMBOTRON ## We value your Privacy OmniPresence is an important global player @@ -17,6 +19,7 @@ require skilled advice and effective, easy-to-use tools. OmniPresence supports citizens, community, business and law enforcement around the world in creating a safer, happier place to live, work and play. +JUMBOTRON]] ### Our tailored contents include @@ -77,3 +80,4 @@ Head of branch, Denmark: Ms Gustafsson </fieldset> </form> </class> +CONTAINER]] diff --git a/templates/container.mdwn b/templates/container.mdwn new file mode 100644 index 0000000..311f5f4 --- /dev/null +++ b/templates/container.mdwn @@ -0,0 +1,3 @@ +<div class="<TMPL_IF fluid>container-fluid<TMPL_ELSE>container</TMPL_IF>"> +<TMPL_VAR content> +</div> diff --git a/templates/jumbotron.mdwn b/templates/jumbotron.mdwn new file mode 100644 index 0000000..ce6ad4b --- /dev/null +++ b/templates/jumbotron.mdwn @@ -0,0 +1,3 @@ +<div class="jumbotron"> +<TMPL_VAR content> +</div> |