Skip to content

Commit

Permalink
feat: PSJekyll.Template.IncludeGoogleFont ( Fixes #59 )
Browse files Browse the repository at this point in the history
  • Loading branch information
James Brundage committed Oct 5, 2024
1 parent 60d954f commit 304a54e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Types/PSJekyll.Template/IncludeGoogleFont.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<#
.SYNOPSIS
Includes a Google Font.
.DESCRIPTION
Includes a Google Font in the site.
This will add a link to the Google Font. It should be located in the head of the site.
#>

param(
# The name of the font to include.
[string]
$FontName
)
if ($FontName) {
"<link href='https://fonts.googleapis.com/css?family=$fontName' rel='stylesheet'>"
} else {
@(
"<% if site.googleFont %>"
"<link href='https://fonts.googleapis.com/css?family={{site.googleFont}}' rel='stylesheet'>"
"<% endif %>"
) -join [Environment]::Newline
}

0 comments on commit 304a54e

Please sign in to comment.