This repository has been archived by the owner on Feb 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
siteConfig.js
55 lines (52 loc) · 1.53 KB
/
siteConfig.js
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
const fileTabs = require("shared/fileTabs.js");
const users = [
{
caption: "User1",
image: "/img/coa.svg",
infoLink: "https://TODO",
pinned: true
},
{
caption: "User2",
image: "/img/coa.svg",
infoLink: "https://TODO",
pinned: true
}
];
const siteConfig = {
title: "Platforms.gov.au - Tell",
tagline:
"Platforms by the Australian Government for the Australian Government",
url: "https://platforms-website.apps.y.cld.gov.au",
baseUrl: "/",
projectName: "tell",
headerLinks: [
{ doc: "producers", label: "Concepts" },
{ doc: "overview", label: "Docs" },
{ page: "help", label: "Help" },
{ blog: true, label: "Blog" }
],
users,
headerIcon: "img/coa.svg",
favicon: "img/favicon.png",
colors: {
primaryColor: "#313131",
secondaryColor: "#121212"
},
copyright: `© Commonwealth of Australia. With the exception of the Commonwealth Coat of Arms and where otherwise noted, this work is licensed under the MIT license.`,
highlight: {
theme: "default"
},
scripts: [
"https://code.jquery.com/jquery-3.2.1.slim.min.js",
"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js",
"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
],
onPageNav: "separate",
ogImage: "img/header-logo-agov.png",
twitterImage: "img/header-logo-agov.png",
blogSidebarTitle: { default: "Recent posts", all: "All blog posts" },
usePrism: true,
markdownPlugins: [md => fileTabs(md, { basePath: "../" })]
};
module.exports = siteConfig;