Re-theme site
This commit is contained in:
285
_site/index.html
285
_site/index.html
@@ -1,9 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<link rel="icon" sizes="192x192" href="https://mgrove.uk/logo.png">
|
||||
|
||||
@@ -14,135 +15,203 @@
|
||||
<!-- add to homescreen for Safari on iOS -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="apple-mobile-web-app-title" content="Demo Site | Matthew Grove">
|
||||
<meta name="apple-mobile-web-app-title" content="Demo Site">
|
||||
<link rel="apple-touch-icon-precomposed" href="https://mgrove.uk/logo.png">
|
||||
|
||||
<!-- tile icon & colour for Windows 8 -->
|
||||
<meta name="msapplication-TileImage" content="https://mgrove.uk/logo.png">
|
||||
<meta name="msapplication-TileColor" content="#d84315">
|
||||
<meta name="msapplication-TileColor" content="#26174e">
|
||||
|
||||
<!-- page info -->
|
||||
<title>Demo Site | Matthew Grove</title>
|
||||
<meta name="description" content="Small coding projects - by Matthew Grove">
|
||||
<meta name="description" content="My demo site - where I host small coding projects and demonstrations. | by Matthew Grove">
|
||||
<meta name="keywords" content="" />
|
||||
|
||||
<!-- import Roboto (font) -->
|
||||
<link href="/css/roboto.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- import jQuery -->
|
||||
<script src="/js/jquery.min.js" type="text/javascript"></script>
|
||||
|
||||
<!-- import cookie JavaScript -->
|
||||
<script src="/js/cookies.js" type="text/javascript"></script>
|
||||
|
||||
<!-- import Material Design components & icons -->
|
||||
<link href="/css/material-components-web.min.css" rel="stylesheet" type="text/css">
|
||||
<link href="/css/material_icons.css" rel="stylesheet" type="text/css">
|
||||
<script src="/js/material-components-web.min.js" type="text/javascript"></script>
|
||||
|
||||
<!-- import local styling & scripts -->
|
||||
<script src="/js/global.js" type="text/javascript"></script>
|
||||
<link href="/css/global.css" rel="stylesheet" type="text/css">
|
||||
<!-- stylesheets -->
|
||||
<link rel="stylesheet" href="/assets/css/main.css" />
|
||||
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-124505000-1" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
function gtag() { dataLayer.push(arguments); }
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'UA-124505000-1');
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- cookie notice is included automatically -->
|
||||
<div id="cookies">
|
||||
<script src="/assets/js/jquery.min.js"></script>
|
||||
|
||||
<body class="is-preload">
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header">
|
||||
<img src="https://mgrove.uk/logo-clear-square.png" class="logo" />
|
||||
<a class="logo" href="/">Matthew Grove</a>
|
||||
<nav>
|
||||
<a href="#menu">Menu</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- Nav -->
|
||||
<nav id="menu">
|
||||
<ul class="links">
|
||||
<li><a href="/" class="current-page-link"
|
||||
>Home</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li><a href="/young-reporter/" >BBC Young Reporter Article Creator</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="/comsci/" >ComSci</a></li>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<li><a href="/luhn-algorithm/" >Luhn Algorithm</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="/site-theme/" >Site Theme</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<div id="cookies">
|
||||
<p>Just to let you know, I use cookies on my site.</p>
|
||||
<p><a href="javascript:void(0);" id="close-cookies">OK</a></p>
|
||||
</div>
|
||||
|
||||
<!-- Banner -->
|
||||
<section id="banner">
|
||||
<div class="inner">
|
||||
<img src="https://mgrove.uk/logo-clear-square.png" class="banner-logo" />
|
||||
<h1>Matthew Grove</h1>
|
||||
<p>My demo site - where I host small coding projects and demonstrations.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- content of navbar is included automatically -->
|
||||
<aside class="navbar-insert mdc-drawer mdc-drawer--modal">
|
||||
<div class="mdc-drawer__content">
|
||||
<div style="margin: 15px;text-align:center;">
|
||||
<img src="https://mgrove.uk/logo.png" style="width: 90%;"/>
|
||||
</div>
|
||||
<div class="mdc-list">
|
||||
<a class="mdc-list-item" href="https://blog.mgrove.uk">
|
||||
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">assignment</i>
|
||||
<span class="mdc-list-item__text">My Blog</span>
|
||||
</a>
|
||||
<a class="mdc-list-item" href="/">
|
||||
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">home</i>
|
||||
<span class="mdc-list-item__text">Home Page</span>
|
||||
</a>
|
||||
|
||||
|
||||
<a class="mdc-list-item" href="/comsci/">
|
||||
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">computer</i>
|
||||
<span class="mdc-list-item__text">ComSci</span>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a class="mdc-list-item" href="/luhn-algorithm/">
|
||||
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">credit_card</i>
|
||||
<span class="mdc-list-item__text">Luhn Algorithm</span>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a class="mdc-list-item" href="/young-reporter/">
|
||||
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">article</i>
|
||||
<span class="mdc-list-item__text">BBC Young Reporter Article Creator</span>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="mdc-list-item" href="/computer-science-blog/">
|
||||
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">code</i>
|
||||
<span class="mdc-list-item__text">GCSE Computer Science Blog</span>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
<!-- Highlights -->
|
||||
<section class="wrapper">
|
||||
<div class="inner">
|
||||
<header class="special">
|
||||
<h2>Projects</h2>
|
||||
<p><p>Got some ideas for me? <a href="https://goo.gl/forms/qXO1cwSbE4FoQHdq2">Leave them here.</a></p>
|
||||
</a></p>
|
||||
</header>
|
||||
<div class="highlights">
|
||||
|
||||
<div class="mdc-drawer-scrim"></div>
|
||||
|
||||
|
||||
|
||||
|
||||
<section>
|
||||
<div class="content">
|
||||
<header>
|
||||
<a href="/young-reporter/" class="icon fa-comment"><span class="label"></span></a>
|
||||
<h3>BBC Young Reporter Article Creator</h3>
|
||||
</header>
|
||||
<p>A simple tool to create markdown files from news articles, for uploading to the Reading School BBC Young Reporter website</p>
|
||||
<a href="/young-reporter/" class="button small">See more</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
<section>
|
||||
<div class="content">
|
||||
<header>
|
||||
<a href="/comsci/" class="icon fa-laptop"><span class="label"></span></a>
|
||||
<h3>ComSci</h3>
|
||||
</header>
|
||||
<p>Some Computer Science info</p>
|
||||
<a href="/comsci/" class="button small">See more</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<section>
|
||||
<div class="content">
|
||||
<header>
|
||||
<a href="/luhn-algorithm/" class="icon fa-credit-card"><span class="label"></span></a>
|
||||
<h3>Luhn Algorithm</h3>
|
||||
</header>
|
||||
<p>Replication of the Luhn algorithm</p>
|
||||
<a href="/luhn-algorithm/" class="button small">See more</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
<section>
|
||||
<div class="content">
|
||||
<header>
|
||||
<a href="/site-theme/" class="icon fa-pencil-square-o"><span class="label"></span></a>
|
||||
<h3>Site Theme</h3>
|
||||
</header>
|
||||
<p>A list of all templated elements available in this site's theme.</p>
|
||||
<a href="/site-theme/" class="button small">See more</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer id="footer">
|
||||
<div class="inner">
|
||||
<div class="content">
|
||||
<section>
|
||||
<h3>Matthew Grove</h3>
|
||||
<p>Software engineer & amateur photographer from Surrey, UK.</p>
|
||||
<br>
|
||||
<a href="https://github.com/mgrove36/demo-code/tree/master/">View this page on
|
||||
GitHub.</a>
|
||||
|
||||
<div class="mdc-drawer-app-content">
|
||||
<header class="mdc-top-app-bar app-bar" id="app-bar">
|
||||
<div class="mdc-top-app-bar__row">
|
||||
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-start">
|
||||
<a href="javascript:void(0);" class="demo-mensu material-icons mdc-top-app-bar__navigation-icon">menu</a>
|
||||
<span class="mdc-top-app-bar__title">Demo Site | Matthew Grove</span>
|
||||
</section>
|
||||
</div>
|
||||
</header>
|
||||
</section>
|
||||
<section>
|
||||
<h4>Other Links</h4>
|
||||
<ul class="plain">
|
||||
<li><a href="https://instagram.com/mgrove36.photos" target="_blank"><i
|
||||
class="icon fa-camera"> </i>Photography</a></li>
|
||||
<li><a href="https://instagram.com/morganandmeganbichons" target="_blank"><i
|
||||
class="icon fa-paw"> </i>Dogs</a></li>
|
||||
<li><a href="mailto:me@mgrove.uk"><i class="icon fa-envelope"> </i>Email me</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
<h4>Social Media</h4>
|
||||
<ul class="plain">
|
||||
<li><a href="https://github.com/mgrove36" target="_blank"><i class="icon fa-github"> </i>Github</a></li>
|
||||
<li><a href="https://twitter.com/mgrove36" target="_blank"><i class="icon fa-twitter"> </i>Twitter</a></li>
|
||||
<li><a href="https://instagram.com/mgrove36" target="_blank"><i class="icon fa-instagram"> </i>Instagram</a></li>
|
||||
<li><a href="https://facebook.com/mgrove36" target="_blank"><i class="icon fa-facebook"> </i>Facebook</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
<div class="copyright">
|
||||
© Matthew Grove 2020.
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="/assets/js/cookies.js"></script>
|
||||
<script src="/assets/js/util.js"></script>
|
||||
<script src="/assets/js/main.js"></script>
|
||||
|
||||
<main class="main-content" id="main-content">
|
||||
<div class="mdc-top-app-bar--fixed-adjust">
|
||||
<h1 id="my-demo-site">My Demo Site</h1>
|
||||
<p>This site contains code for small projects that I am doing; each project can be accessed via the navigation drawer.</p>
|
||||
</body>
|
||||
|
||||
<p>If you have any ideas for projects I could do, please leave them <a href="https://goo.gl/forms/qXO1cwSbE4FoQHdq2">here</a>.</p>
|
||||
|
||||
<!-- link to source code on GitHub -->
|
||||
<a href="https://github.com/mgrove36/demo-code/tree/master/" class="source-code-link mdc-fab mdc-fab--extended" data-mdc-auto-init="MDCRipple">
|
||||
<span class="material-icons mdc-fab__icon">rate_review</span>
|
||||
<span class="mdc-fab__label">View on GitHub</span>
|
||||
</a>
|
||||
</div>
|
||||
</main>
|
||||
<footer>
|
||||
© Matthew Grove 2020
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
Reference in New Issue
Block a user