diff options
| -rw-r--r-- | 404.html | 5 | ||||
| -rw-r--r-- | _includes/heading.html | 4 | ||||
| -rw-r--r-- | index.html | 5 | ||||
| -rw-r--r-- | support.html | 5 |
4 files changed, 7 insertions, 12 deletions
@@ -1,10 +1,7 @@ <HTML> <HEAD> - <link href="./style.css" type="text/css" rel="stylesheet"> - <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width"> <TITLE>404 | Silicon Linux</TITLE> + {% include heading.html %} </HEAD> <BODY> <div id="navigation"> diff --git a/_includes/heading.html b/_includes/heading.html new file mode 100644 index 0000000..b4121c8 --- /dev/null +++ b/_includes/heading.html @@ -0,0 +1,4 @@ +<link href="./style.css" type="text/css" rel="stylesheet"> +<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> +<meta charset="utf-8"> +<meta name="viewport" content="width=device-width, initial-scale=1"> @@ -1,10 +1,7 @@ <HTML> <HEAD> - <link href="./style.css" type="text/css" rel="stylesheet"> - <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width"> <TITLE>Silicon Linux</TITLE> + {% include heading.html %} </HEAD> <BODY> <div id="navigation"> diff --git a/support.html b/support.html index e9f783f..6e232bc 100644 --- a/support.html +++ b/support.html @@ -1,10 +1,7 @@ <html> <HEAD> -<link href="./style.css" type="text/css" rel="stylesheet"> -<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> -<meta charset="utf-8"> -<meta name="viewport" content="width=device-width"> <TITLE>Support | Silicon Linux</TITLE> + {% include heading.html %} </HEAD> <BODY> <div id="navigation"> |
