Source file foundation.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
open Cow.Html
module Link = struct
type t = string * Uri.t
type links = t list
let link ?(cl="") (txt, uri) = a ~href:uri ~cls:cl (string txt)
let mk_ul_links ~cl ~links = ul ~cls:cl links
let top_nav ?(align=`Right) (links:links) =
let links = List.map (link ~cl:"") links in
let cl = match align with `Right -> "right" | `Left -> "left" in
mk_ul_links ~cl ~links
let button_group (links:links) =
let links = List.map (link ~cl:"button") links in
mk_ul_links ~cl:"button-group" ~links
let side_nav (links:links) =
let links = List.map (link ~cl:"") links in
mk_ul_links ~cl:"side-nav" ~links
let bottom_nav (links:links) =
let links = List.map (link ~cl:"") links in
mk_ul_links ~cl:"inline-list right" ~links
end
module Sidebar = struct
type t = [
| `link of Link.t
| `active_link of Link.t
| `divider
| `text of string
| `html of Cow.Xml.t
]
let t ~title ~content =
let to_html = function
|`link l -> li (Link.link l)
|`active_link l -> li ~cls:"active" (Link.link l)
|`divider -> li ~cls:"divider" empty
|`html h -> li h
|`text t -> li (string t)
in
let rec make = function
| [] -> []
| hd::tl -> to_html hd :: make tl
in
h5 (string title)
++ ul ~add_li:false ~cls:"side-nav" (make content)
end
module Index = struct
let t ~top_nav =
top_nav
++ br empty
++ div ~cls:"row" (
div ~cls:"large-12 columns" (
img (Uri.of_string "http://placehold.it/1000x400&text=img")
++ hr empty
))
end
let rec intercalate x = function
| [] -> []
| [e] -> [e]
| e::es -> e :: x :: intercalate x es
module Blog = struct
let post ~title ~authors ~date ~content =
let open Link in
let author = match authors with
| [] -> empty
| _ ->
let a_nodes =
intercalate (string ", ") (List.map (link ~cl:"") authors)
in
string "By " ++ list a_nodes
in
let title_text, title_uri = title in
tag "article" (
date
++ h4 (a ~href:title_uri (string title_text))
++ p (i author)
++ content
)
let t ~title ~subtitle ~sidebar ~posts ~copyright () =
let subtitle =
match subtitle with
| None -> empty
| Some s -> small (string s)
in
list [
div ~cls:"row"
(div ~cls:"large-9 columns" (h2 (string title ++ subtitle)));
div ~cls:"row" (
div ~cls:"small-12 large-9 columns" ~attrs:["role", "content"] posts
++ aside ~cls:"small-12 large-3 columns panel" sidebar
);
footer ~cls:"row" (
div ~cls:"large-12 columns" (
hr empty
++ div ~cls:"row" (
div ~cls:"large-6 columns" (
p (small (string "© Copyright " ++ copyright))
))))
]
end
let body ?google_analytics ?highlight ~title:t ~headers ~content ~trailers () =
let js_init = [`Data "$(document).foundation();"] in
let highlight_css, highlight_trailer = match highlight with
| None -> empty, empty
| Some style ->
link ~attrs:["rel", "stylesheet"; "href", style ] empty,
script ~src:"/js/vendor/highlight.pack.js" empty
++ script (string "hljs.initHighlightingOnLoad(); ")
in
let ga =
match google_analytics with
| None -> []
| Some (a, d) ->
script ~typ:"text/javascript" (
string @@ Printf.sprintf
"//<![CDATA[\n\
var _gaq = _gaq || [];\n\
_gaq.push(['_setAccount', '%s']);\n\
_gaq.push(['_setDomainName', '%s']);\n\
_gaq.push(['_trackPageview']);\n\
\n\
(function() {\n\
\ var ga = document.createElement('script'); \
\ ga.type = 'text/javascript'; \
\ ga.async = true;\n\
\ ga.src = ('https:' == document.location.protocol\
\ ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';\n\
\ var s = document.getElementsByTagName('script')[0]; \
\ s.parentNode.insertBefore(ga, s);\n\
})();\n\
//]]>" a d)
in
head (list [
meta ~attrs:["charset","utf-8"] empty;
meta ~attrs:["name","viewport"; "content","width=device-width"] empty;
title (string t);
link ~attrs:["rel","stylesheet"; "href","/css/foundation.min.css"] empty;
link ~attrs:["rel","stylesheet"; "href","/css/site.css"] empty;
script ~src:"/js/vendor/custom.modernizr.js" empty;
highlight_css;
ga;
headers;
])
++ body (list [
content;
script ~src:"/js/vendor/jquery.min.js" empty;
script ~src:"/js/foundation/foundation.min.js" empty;
script ~src:"/js/foundation/foundation.topbar.js" empty;
script js_init;
highlight_trailer;
trailers
])
let top_nav ~title ~title_uri ~nav_links =
div ~cls:"contain-to-grid fixed" (
nav ~cls:"top-bar" ~attrs:["data-topbar",""] (
ul ~add_li:false ~cls:"title-area" [
li ~cls:"name" (h1 (a ~href:title_uri title));
li ~cls:"toggle-topbar menu-icon"
(a ~href:(Uri.of_string "#") (span (string "Menu")));
]
++ section ~cls:"top-bar-section" nav_links
))
let page ~body =
Printf.sprintf
"<!DOCTYPE html>\n\
\ <!--[if IE 8]><html class=\"no-js lt-ie9\" lang=\"en\" \
xmlns=\"http://www.w3.org/1999/xhtml\"><![endif]-->\n\
\ <!--[if gt IE 8]><!--><html class=\"no-js\" lang=\"en\" \
xmlns=\"http://www.w3.org/1999/xhtml\"><!--<![endif]-->\n\
%s\n\
</html>" (Cow.Html.to_string body)