-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocpad.coffee
73 lines (58 loc) · 2.19 KB
/
docpad.coffee
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
# DocPad Configuration File
# http://docpad.org/docs/config
# Define the DocPad Configuration
docpadConfig = {
# ...
srcPath: 'web' # default
outPath: './build/web' # default
templateData:
# Specify some site properties
site:
# Here are some old site urls that you would like to redirect from
oldUrls: [
]
# The default title of our website
title: "QTime"
# The website description (for SEO)
description: """
QTime
"""
# The website keywords (for SEO) separated by commas
keywords: """
qtime
"""
# The website's styles
styles: [
'material.min.css'
]
# The website's scripts
scripts: [
'material.min.js'
]
# -----------------------------
# Helper Functions
getUrl: (document) ->
return @site.url + (document.url or document.get?('url'))
# Get the prepared site/document title
# Often we would like to specify particular formatting to our page's title
# we can apply that formatting here
getPreparedTitle: ->
# if we have a document title, then we should use that and suffix the site's title onto it
if @document.title
"#{@document.title} | #{@site.title}"
# if our document does not have it's own title, then we should just use the site's title
else
@site.title
getSiteTitle: ->
@site.title
# Get the prepared site/document description
getPreparedDescription: ->
# if we have a document description, then we should use that, otherwise use the site's description
@document.description or @document.lead or @site.description
# Get the prepared site/document keywords
getPreparedKeywords: ->
# Merge the document keywords with the site keywords
@site.keywords.concat(@document.keywords or []).join(', ')
}
# Export the DocPad Configuration
module.exports = docpadConfig