Add charset of HTML
This commit is contained in:
parent
99ddaa0ca2
commit
2ac0d43877
3 changed files with 6 additions and 2 deletions
|
@ -21,4 +21,6 @@
|
|||
(:url "http://redlinernotes.com/docs/talks/" :name "Talks"))
|
||||
:staging-dir "/tmp/coleslaw/"
|
||||
:title "Improved Means for Achieving Deteriorated Ends"
|
||||
:theme "hyde")
|
||||
:theme "hyde"
|
||||
:lang "en"
|
||||
:charset "us-ascii")
|
||||
|
|
|
@ -15,7 +15,8 @@
|
|||
(staging-dir :initarg :staging-dir :reader staging-dir)
|
||||
(theme :initarg :theme :reader theme)
|
||||
(title :initarg :title :reader title)
|
||||
(lang :initarg :lang :reader lang))
|
||||
(lang :initarg :lang :reader lang)
|
||||
(charset :initarg :charset :reader charset))
|
||||
(:default-initargs
|
||||
:page-ext "html"
|
||||
:separator ";;;;;"
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
<!DOCTYPE html>{\n}
|
||||
<html lang="{$config.lang}">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset={$config.charset}">
|
||||
<title>{$config.title}</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link href="{$config.domain}/css/bootstrap.min.css" rel="stylesheet" media="screen">
|
||||
|
|
Loading…
Add table
Reference in a new issue