nothing broken but nothing happening either, now with more css
This commit is contained in:
parent
e7f1120416
commit
bb925b1e74
5
resources/pronouns.css
Normal file
5
resources/pronouns.css
Normal file
@ -0,0 +1,5 @@
|
||||
.about {
|
||||
font: large cursive
|
||||
border:1px solid #060606
|
||||
background-color:#F6CEFC
|
||||
}
|
@ -72,7 +72,9 @@
|
||||
[subject object possessive-determiner possessive-pronoun reflexive]
|
||||
(html
|
||||
[:html
|
||||
[:head ""]
|
||||
[:head
|
||||
[:title "Pronoun examples"]
|
||||
[:link {:rel "stylesheet" :href "/pronouns.css"}]]
|
||||
[:body
|
||||
(examples-block subject object possessive-determiner possessive-pronoun reflexive)
|
||||
(about-block)
|
||||
|
@ -28,6 +28,11 @@
|
||||
:headers {"Content-Type" "text/html"}
|
||||
:body (pages/pronouns (:* params) pronouns-table)})
|
||||
|
||||
(GET "/pronouns.css" {params :params}
|
||||
{:status 200
|
||||
:headers {"Content-Type" "text/css"}
|
||||
:body (slurp (io/resource "pronouns.css"))})
|
||||
|
||||
(ANY "*" []
|
||||
(route/not-found (slurp (io/resource "404.html")))))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user