aboutsummaryrefslogtreecommitdiff
path: root/src/ctf_website/views/home.clj
blob: dafb57885c776a10c63cde54d32486aa72fd3762 (plain)
1
2
3
4
5
6
7
8
9
(ns ctf-website.views.home
  (:require [ctf-website.views.common :as common])
  (:use [noir.core :only [defpage]]
        [hiccup.core :only [html]]))

(defpage "/" []
         (common/layout
           [:h1 "Austin 2600 CTF server"]
           [:a {:href "login"} "Compete"]))