Compare commits
No commits in common. "ad5986c790f5ce736d82d77b48ef5f70187bad97" and "ae9c35dfe64e2bc7f7854705084daf90331337cc" have entirely different histories.
ad5986c790
...
ae9c35dfe6
5 changed files with 11 additions and 26 deletions
|
@ -1,8 +1,2 @@
|
|||
# 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)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iHUEABEIAB0WIQTTZls5PJ+2G0C0hBQ2EUIvQxhiUQUCXmOQLAAKCRA2EUIvQxhi
|
||||
UViiAP0X/EdRR3JCL0ATOdP/wCG5XalGcC1FOzFd0VjTkQ04rQEAoKd9PBY3w5Um
|
||||
H8YZFgMu6lwJxUWwPIoyU88nnxAwh6M=
|
||||
=gavo
|
||||
iHUEABEIAB0WIQTTZls5PJ+2G0C0hBQ2EUIvQxhiUQUCXlugrwAKCRA2EUIvQxhi
|
||||
UdWIAP9lxFeg/fYMMhee/obdDLcW8GE8f294qL6G31lODyK9sQD+NFnFhx0sRKnt
|
||||
+ooOyKQmxSZOuenKZm9F498lIqIJPVQ=
|
||||
=GLCy
|
||||
-----END PGP SIGNATURE-----
|
||||
|
|
17
project.clj
17
project.clj
|
@ -1,13 +1,13 @@
|
|||
(defproject dda/cryogen-bootstrap "0.1.6-SNAPSHOT"
|
||||
(defproject dda/cryogen-bootstrap "0.1.3-SNAPSHOT"
|
||||
:description "bootstrap theme for cryogen"
|
||||
:url "https://domaindrivenarchitecture.org"
|
||||
:license {:name "Apache License, Version 2.0"
|
||||
:url "https://www.apache.org/licenses/LICENSE-2.0.html"}
|
||||
:dependencies [[org.clojure/clojure "1.8.0"]
|
||||
[ring/ring-devel "1.8.0"]
|
||||
[ring/ring-devel "1.7.1"]
|
||||
[compojure "1.6.1"]
|
||||
[ring-server "0.5.0"]
|
||||
[dda/cryogen-core "0.2.3"]
|
||||
[dda/cryogen-core "0.2.0"]
|
||||
[dda/cryogen-markdown "0.1.6"]]
|
||||
:repositories [["snapshots" :clojars]
|
||||
["releases" :clojars]]
|
||||
|
@ -23,13 +23,4 @@
|
|||
:exclusions [commons-logging]}}
|
||||
:test {:source-paths ["test"]
|
||||
:resource-paths ["test-resources"]
|
||||
: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"]])
|
||||
:dependencies []}})
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
{% include "/html/includes/headlines.inc" %}
|
||||
{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
{% block center %}
|
||||
{{page.content|safe}}
|
||||
{% endblock %}
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
<div class="carousel-inner" role="listbox">
|
||||
{% for sub-page in page.children|filter-sidebar %}
|
||||
<div {% if forloop.first %}class="carousel-item active"{% else %}class="carousel-item"{% endif %}>
|
||||
<img class="d-block w-100" src="{{sub-page.carousel-image}}" alt="{{sub-page.carousel-image}}">
|
||||
<div class="carousel-caption d-block text-left">
|
||||
<img class="d-block img-fluid" src="{{sub-page.carousel-image}}" alt="{{sub-page.carousel-image}}">
|
||||
<div class="carousel-caption d-none d-md-block text-left">
|
||||
<h1>{{sub-page.title}}</h1>
|
||||
<p>{{sub-page.abstract|safe}}</p>
|
||||
<p><a class="btn btn-lg btn-primary"
|
||||
|
|
Loading…
Reference in a new issue