Skip to content

Commit a87ed20

Browse files
James BrundageJames Brundage
authored andcommitted
feat: WebSocket Website ( Fixes #19 )
Fixing output directory
1 parent 33636a5 commit a87ed20

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

docs/_includes/GoogleFont.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{% if page.googleFont %}
2+
<link href='https://fonts.googleapis.com/css?family={{page.googleFont}}' rel='stylesheet'>
3+
<style type='text/css'>body { font-family: '{{page.googleFont}}',sans-serif } </style>
4+
{% elsif site.googleFont %}
5+
<link href='https://fonts.googleapis.com/css?family={{site.googleFont}}' rel='stylesheet'>
6+
<style type='text/css'>body { font-family: '{{site.googleFont}}',sans-serif } </style>
7+
{% else %}
8+
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
9+
<style type='text/css'>body { font-family: 'Roboto',sans-serif } </style>
10+
{% endif %}
11+
{% if page.codeFont %}
12+
<link href='https://fonts.googleapis.com/css?family={{page.codeFont}}' rel='stylesheet'>
13+
<style type='text/css'>code, pre { font-family: '{{page.codeFont}}',monospace } </style>
14+
{% elsif site.codeFont %}
15+
<link href='https://fonts.googleapis.com/css?family={{site.codeFont}}' rel='stylesheet'>
16+
<style type='text/css'>code, pre { font-family: '{{site.codeFont}}',monospace } </style>
17+
{% else %}
18+
<link href='https://fonts.googleapis.com/css?family=Roboto+Mono' rel='stylesheet'>
19+
<style type='text/css'>code, pre { font-family: 'Roboto Mono',monospace } </style>
20+
{% endif %}

0 commit comments

Comments
 (0)