@ -0,0 +1 @@
Disallow: /
@ -22,7 +22,7 @@
("http://www.anybrowser.org/campaign/" "Any Browser")))
(define footer
`(div (@ (class "footer"))
`(footer (@ (class "footer"))
(div (@ (class "footer__authors"))
(div "Content: "
(a (@ (href "/contacts.xhtml")) "Ivan Polyakov"))
@ -22,10 +22,10 @@
("/contacts.xhtml" "Contacts")))
(define header
`(div (@ (class "header"))
`(header (@ (class "header"))
(div (@ (class "container"))
(h4 (@ (class "header__logo")) "vilor")
(span (@ (class "header__nav"))
(nav (@ (class "header__nav"))
,(let ((idx -1))
(map (lambda (l)
(set! idx (+ idx 1))
@ -43,6 +43,8 @@
(meta (@ (name "viewport")
(content "width=device-width, initial-scale=1")))
(meta (@ (name "robots") (content "noindex,nofollow")))
,(map (lambda (args)
`(meta ,(append '(@) args))) page-meta)
@ -36,7 +36,7 @@
,header
(hr)
(div (@ (class "content container"))
(main (@ (class "content container"))
(h1 (@ (class "content__title")) ,page-name)
(div (@ (class "content__description")) ,page-desc)
,page-content)