Skip to content

Commit

Permalink
Add more site meta data
Browse files Browse the repository at this point in the history
  • Loading branch information
davesmith00000 committed Aug 20, 2023
1 parent 060bd45 commit 2905232
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions website/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,12 @@ laikaTheme :=
Helium.defaults.all
.metadata(
title = Some("Tyrian"),
language = Some("en")
description = Some("Elm-inspired Scala web UI library."),
identifier = Some(""),
authors = Seq(),
language = Some("en"),
datePublished = Some(OffsetDateTime.now),
version = Some("1.0.0")
)
.all
.themeColors(
Expand Down Expand Up @@ -104,7 +109,8 @@ laikaTheme :=
.tableOfContent(title = "Contents", depth = 2)
.site
.autoLinkCSS(Root / "css" / "custom.css")
.site.favIcons(
.site
.favIcons(
Favicon.internal(Root / "img" / "favicon.png", sizes = "32x32")
)
.build
Expand All @@ -117,11 +123,11 @@ laikaPreviewConfig :=

// Make site

siteSourceDirectory := target.value / "docs" / "site"
siteSourceDirectory := target.value / "docs" / "site"
makeSite / includeFilter := "*"
makeSite / excludeFilter := ".DS_Store"
git.remoteRepo := "git@github.com:PurpleKingdomGames/tyrian.git"
ghpagesNoJekyll := true
git.remoteRepo := "git@github.com:PurpleKingdomGames/tyrian.git"
ghpagesNoJekyll := true

addCommandAlias(
"publishTyrianSite",
Expand Down

0 comments on commit 2905232

Please sign in to comment.