-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: PSJekyll.Template.IncludeGoogleFont ( Fixes #59 )
- Loading branch information
James Brundage
committed
Oct 5, 2024
1 parent
60d954f
commit 304a54e
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
|