A pastebin for markdown pages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
531 B

14 years ago
(ns NoteHub.views.pages
(:require [NoteHub.views.common :as common])
(:use [noir.core :only [defpage]]
[hiccup.core :only [html]]))
(defpage "/" []
(common/layout
14 years ago
[:div#hero
[:h1 "NoteHub"]
[:h2.helvetica-neue "Free hosting for markdown pages."]
[:button.helvetica-neue "Create Page"]]
[:div#body
[:p.centerized.helvetica-neue
(interpose (repeat 10 "&nbsp")
["About" "How to use" "Impressum"])]]))
14 years ago