Start of development page

This commit is contained in:
2020-04-23 17:35:28 +01:00
parent 7a90646ac3
commit 1a6917ae47
6 changed files with 48 additions and 36 deletions

View File

@@ -5,6 +5,6 @@
{%- seo -%}
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
{%- feed_meta -%}
<link rel="stylesheet" type="text/css" href="custom.css">
<script defer src="fontawesome.js"></script>
<link rel="stylesheet" type="text/css" href="{{ "/custom.css" | relative_url }}">
<script defer src="{{ "/fontawesome.js" | relative_url }}"></script>
</head>

View File

@@ -1,18 +0,0 @@
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
{%- include head.html -%}
<body>
{%- include header.html -%}
<main class="page-content" aria-label="Content">
{{ content }}
</main>
{%- include footer.html -%}
</body>
</html>

View File

@@ -1,11 +0,0 @@
---
layout: default
---
<div class="home">
{%- if page.title -%}
<h1 class="page-heading">{{ page.title }}</h1>
{%- endif -%}
{{ content }}
</div>

View File

@@ -1,6 +1,12 @@
body {
.site-header {
background: #202226;
color: #00ADFF;
}
/* TODO Proper theme overrides */
h1, .site-title {
color: #00ADFF !important;
}
.page-link {
color: white !important;
}
.bigimage {
transform: skew(-10deg);
@@ -41,3 +47,18 @@ a.button {
padding: 0.5em;
background: rgba(255, 255, 255, 0.3);
}
.badge {
/* Center the content */
align-items: center;
display: inline-flex;
justify-content: center;
/* Rounded border */
border-radius: 0.5em;
/* Spacing */
padding: 4px 8px;
}
.bg-green {
background: green;
}

20
dev.html Normal file
View File

@@ -0,0 +1,20 @@
---
layout: page
title: Development
permalink: /development/
---
<div class="wrapper">
<h1>Langagues/Technologies:</h1>
<ul>
<li><span class="fab fa-java" style="color: orange"></span> Java</li>
<li><span class="fab fa-python" style="color: blue"></span> Python</li>
<li><span class="fab fa-gulp" style="color: red"></span> Gulp.js</li>
</ul>
<h1>Projects:</h1>
<div style="display: flex;">
<div>
<a href="https://github.com/nottinghamtec/PyRIGS"><h1>R.I.G.S <span class="fab fa-python" style="color: blue"></span> <span class="fab fa-gulp" style="color: red"></span></h1></a>
<p>R.I.G.S or Rig Information Gathering System is Django-based webapp handling events management for TEC PA and Lighting. I have taken over project managaging and developing this project from <a href="www.codedinternet.com">Tom Price</a> and <a href="https://dtaylor.uk/">David Taylor</a>, working alongside <a href="https://github.com/mattysmith22">Matt Smith</a>. Together we have updated to Django 3.0, implemented a long awaited asset management system, rewritten the testing suite for the project and generally refactoring what is, in the main, five year old code.</p>
</div>
</div>
</div>

View File

@@ -11,9 +11,9 @@
</header>
<main aria-label="Content">
<div style="display: flex; justify-content: center; background: black; margin-left: -3vw; margin-right: -3vw;">
<div class="bigimage"><img class="background" src="img/christian-wiediger-WkfDrhxDMC8-unsplash.jpg"><a class="button" href=""><span class="fas fa-file-code"></span> Development</a></div>
<div class="bigimage"><img class="background" src="img/1*0V2rDSk8SOr6mpfFf28EJA.jpeg"><a class="button" href=""><span class="fas fa-pen-fancy"></span> Writing</a></div>
<div class="bigimage"><img class="background" src="img/1*kV4-rHsyoDl4ursB1CG72Q.jpeg"><a class="button" href=""><span class="fas fa-lightbulb"></span> Technical</a></div>
<div class="bigimage"><img class="background" src="img/christian-wiediger-WkfDrhxDMC8-unsplash.jpg"><a class="button" href="development"><span class="fas fa-file-code"></span> Development</a></div>
<div class="bigimage"><img class="background" src="img/1*0V2rDSk8SOr6mpfFf28EJA.jpeg"><a class="button" href="writing"><span class="fas fa-pen-fancy"></span> Writing</a></div>
<div class="bigimage"><img class="background" src="img/1*kV4-rHsyoDl4ursB1CG72Q.jpeg"><a class="button" href="techical"><span class="fas fa-lightbulb"></span> Technical</a></div>
<div class="bigimage"><img class="background" src="img/1*2J4xTO7JYBYA3dcMwwGSlw.jpeg"><a class="button" href="blog"><span class="fas fa-portrait"></span> Personal</a></div>
</div>
</main>