Compare commits

..

10 commits

Author SHA1 Message Date
ad5986c790 display carousel caption on all breakpoints 2022-03-02 16:48:08 +01:00
jem
be16c40f30 fix für headlines 2021-09-29 09:02:22 +02:00
0f0a73ea64
add contact 2020-03-07 16:55:51 +01:00
jem
d180717457 Version 0.1.6-SNAPSHOT 2020-03-07 13:14:54 +01:00
jem
dcbfed35f9 Version 0.1.5 2020-03-07 13:14:31 +01:00
jem
09a1fc63fb Version 0.1.5-SNAPSHOT 2020-03-06 15:22:44 +01:00
jem
434b220958 Version 0.1.4 2020-03-06 15:22:06 +01:00
lukas
f880e5f065 Version 0.1.4-SNAPSHOT 2020-03-05 15:30:03 +01:00
lukas
17ed494252 Version 0.1.3 2020-03-05 15:29:33 +01:00
lukas
844744f2b8 added release tasks 2020-03-05 15:29:11 +01:00
5 changed files with 26 additions and 11 deletions

View file

@ -1,2 +1,8 @@
# cryogen-bootstrap # cryogen-bootstrap
[![Clojars Project](https://img.shields.io/clojars/v/dda/cryogen-bootstrap.svg)](https://clojars.org/dda/cryogen-bootstrap)
[![Build Status](https://travis-ci.org/DomainDrivenArchitecture/cryogen-bootstrap.svg?branch=master)](https://travis-ci.org/DomainDrivenArchitecture/cryogen-bootstrap)
[<img src="https://meissa-gmbh.de/img/community/Mastodon_Logotype.svg" width=20 alt="team@social.meissa-gmbh.de"> team@social.meissa-gmbh.de](https://social.meissa-gmbh.de/@team) | [Website & Blog](https://domaindrivenarchitecture.org)
## Leiningen
[![Clojars Project](http://clojars.org/dda/cryogen-bootstrap/latest-version.svg)](http://clojars.org/dda/cryogen-bootstrap)

View file

@ -1,7 +1,7 @@
-----BEGIN PGP SIGNATURE----- -----BEGIN PGP SIGNATURE-----
iHUEABEIAB0WIQTTZls5PJ+2G0C0hBQ2EUIvQxhiUQUCXlugrwAKCRA2EUIvQxhi iHUEABEIAB0WIQTTZls5PJ+2G0C0hBQ2EUIvQxhiUQUCXmOQLAAKCRA2EUIvQxhi
UdWIAP9lxFeg/fYMMhee/obdDLcW8GE8f294qL6G31lODyK9sQD+NFnFhx0sRKnt UViiAP0X/EdRR3JCL0ATOdP/wCG5XalGcC1FOzFd0VjTkQ04rQEAoKd9PBY3w5Um
+ooOyKQmxSZOuenKZm9F498lIqIJPVQ= H8YZFgMu6lwJxUWwPIoyU88nnxAwh6M=
=GLCy =gavo
-----END PGP SIGNATURE----- -----END PGP SIGNATURE-----

View file

@ -1,13 +1,13 @@
(defproject dda/cryogen-bootstrap "0.1.3-SNAPSHOT" (defproject dda/cryogen-bootstrap "0.1.6-SNAPSHOT"
:description "bootstrap theme for cryogen" :description "bootstrap theme for cryogen"
:url "https://domaindrivenarchitecture.org" :url "https://domaindrivenarchitecture.org"
:license {:name "Apache License, Version 2.0" :license {:name "Apache License, Version 2.0"
:url "https://www.apache.org/licenses/LICENSE-2.0.html"} :url "https://www.apache.org/licenses/LICENSE-2.0.html"}
:dependencies [[org.clojure/clojure "1.8.0"] :dependencies [[org.clojure/clojure "1.8.0"]
[ring/ring-devel "1.7.1"] [ring/ring-devel "1.8.0"]
[compojure "1.6.1"] [compojure "1.6.1"]
[ring-server "0.5.0"] [ring-server "0.5.0"]
[dda/cryogen-core "0.2.0"] [dda/cryogen-core "0.2.3"]
[dda/cryogen-markdown "0.1.6"]] [dda/cryogen-markdown "0.1.6"]]
:repositories [["snapshots" :clojars] :repositories [["snapshots" :clojars]
["releases" :clojars]] ["releases" :clojars]]
@ -23,4 +23,13 @@
:exclusions [commons-logging]}} :exclusions [commons-logging]}}
:test {:source-paths ["test"] :test {:source-paths ["test"]
:resource-paths ["test-resources"] :resource-paths ["test-resources"]
:dependencies []}}) :dependencies []}}
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag"]
["deploy"]
["uberjar"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]])

View file

@ -4,6 +4,6 @@
{% include "/html/includes/headlines.inc" %} {% include "/html/includes/headlines.inc" %}
{% endblock %} {% endblock %}
{% block center %} {% block main %}
{{page.content|safe}} {{page.content|safe}}
{% endblock %} {% endblock %}

View file

@ -10,8 +10,8 @@
<div class="carousel-inner" role="listbox"> <div class="carousel-inner" role="listbox">
{% for sub-page in page.children|filter-sidebar %} {% for sub-page in page.children|filter-sidebar %}
<div {% if forloop.first %}class="carousel-item active"{% else %}class="carousel-item"{% endif %}> <div {% if forloop.first %}class="carousel-item active"{% else %}class="carousel-item"{% endif %}>
<img class="d-block img-fluid" src="{{sub-page.carousel-image}}" alt="{{sub-page.carousel-image}}"> <img class="d-block w-100" src="{{sub-page.carousel-image}}" alt="{{sub-page.carousel-image}}">
<div class="carousel-caption d-none d-md-block text-left"> <div class="carousel-caption d-block text-left">
<h1>{{sub-page.title}}</h1> <h1>{{sub-page.title}}</h1>
<p>{{sub-page.abstract|safe}}</p> <p>{{sub-page.abstract|safe}}</p>
<p><a class="btn btn-lg btn-primary" <p><a class="btn btn-lg btn-primary"