Skip to content

Commit 2fc9b11

Browse files
committed
Update site to add duct.edn references
1 parent 6414179 commit 2fc9b11

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

site/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ <h1 class="title">
3838
</p>
3939
<p>
4040
Instead of a prescribed file tree, Duct uses a Clojure data structure
41-
to describe how the components of your application are connected and
42-
configured.
41+
in a <code>duct.edn</code> file to describe how the components of your
42+
application are connected and configured.
4343
</p>
4444
<pre class="highlight"><code class="language-clojure">{:system
4545
{:duct.module/logging {}
@@ -87,8 +87,8 @@ <h1 class="title">
8787
Write the rest of your code in idiomatic <strong>Clojure</strong>.
8888
</p>
8989
<p>
90-
The top-level keywords in your system are linked to normal Clojure
91-
functions or multimethods. This code is <em>simpler</em> as it
90+
The top-level keywords in <code>duct.edn</code> are linked to normal
91+
Clojure functions or multimethods. This code is <em>simpler</em> as it
9292
doesn't need to know how it's connected to the rest of the system.
9393
</p>
9494
<pre class="highlight"><code class="language-clojure">(ns demo.routes

site/style.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ p strong {
5151
color: white;
5252
}
5353

54+
code {
55+
font-family: JetBrains Mono, monospace;
56+
}
57+
5458
pre.highlight {
5559
padding: 0;
5660
margin: 1rem 0;
@@ -59,7 +63,6 @@ pre.highlight {
5963
}
6064

6165
pre.highlight code {
62-
font-family: JetBrains Mono, monospace;
6366
font-size: 1rem;
6467
border: 1px solid #666;
6568
border-radius: 10px;

0 commit comments

Comments
 (0)