Further work on new header
@@ -59,7 +59,7 @@ paginate = 5
|
|||||||
site = ""
|
site = ""
|
||||||
|
|
||||||
[languages]
|
[languages]
|
||||||
[languages.en]
|
[languages.en.params]
|
||||||
languageName = "English"
|
languageName = "English"
|
||||||
title = "Hyperlight Technical Services"
|
title = "Hyperlight Technical Services"
|
||||||
subtitle = "Trading Name of Arona Jones"
|
subtitle = "Trading Name of Arona Jones"
|
||||||
|
|||||||
@@ -1,18 +1,81 @@
|
|||||||
<style>
|
<style>
|
||||||
@keyframes blinker {
|
@keyframes blinker {
|
||||||
50% {
|
50% {
|
||||||
opacity: 0;
|
opacity: 10%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
header > h1 {
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
nav > a {
|
||||||
|
flex-grow: 1;
|
||||||
|
padding: 10vh 0;
|
||||||
|
text-decoration: none;
|
||||||
|
font-weight: bold;
|
||||||
|
text-transform: uppercase;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
nav > a > span {
|
||||||
|
background-color: black;
|
||||||
|
}
|
||||||
|
.scroll-item {
|
||||||
|
animation: scrollUp 7s ease-in-out infinite alternate;
|
||||||
|
background-color: black;
|
||||||
|
}
|
||||||
|
@keyframes scrollUp {
|
||||||
|
from {
|
||||||
|
-webkit-transform: translateY(0);
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
-webkit-transform: translateY(-100%);
|
||||||
|
transform: translateY(-100%);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
-webkit-transform: translateY(-200%);
|
||||||
|
transform: translateY(-200%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<header class="header">
|
<header style="display: grid; grid-template-columns: min-content min-content auto; grid-template-rows: min-content min-content max-content;">
|
||||||
<div style="font-size: 2em;">
|
<h1 style="font-size: 3em;">
|
||||||
<span style="margin-bottom: -0.4;">HYPER
|
HYPER
|
||||||
<hr style="width: 100%; border: 3px solid #7df9ff; border-radius: 5px; margin-bottom: -0.4em; margin-top: -0.39em;">
|
</h1>
|
||||||
LIGHT <small style="font-size: 0.6em;">Technical Services</small>
|
<h1 style="font-size: 3em;">
|
||||||
<img src="lightning-helix.png" style="height: 100px; width: 100px; animation: blinker 1s linear;"/>
|
LIGHT
|
||||||
</div>
|
</h1>
|
||||||
{{ if len $.Site.Menus }}
|
<h2 style="margin: 0; margin-left: 1em; grid-column-start: 3; align-self: center;">Technical Services</h2>
|
||||||
{{ partial "menu.html" . }}
|
<hr style="width: 100%; border: 3px solid #7df9ff; border-radius: 5px; grid-column-end: span 3; margin: 0; margin-top: -0.7em;">
|
||||||
{{ end }}
|
<img src="lightning-helix.png" style="object-fit: cover; width: 100%; max-height: 100%; animation: blinker 1s linear; justify-self: center;"/>
|
||||||
|
<h3 style="font-style: italic; grid-column-end: span 2; text-align: center;">Bespoke experiences — authentic, inclusive, and sustainable without compromise</h3>
|
||||||
</header>
|
</header>
|
||||||
|
<nav style="display: flex; justify-content: center; align-items: center; padding-top: 1em;">
|
||||||
|
<a href="" style="background-image: url('tte.jpg');">
|
||||||
|
<span>Technical Support</span>
|
||||||
|
</a>
|
||||||
|
<a style="background-image: url('main.png');">
|
||||||
|
<div style="background-color: black; padding: 0.2em; width: 80%; margin-left: auto; margin-right: auto;">
|
||||||
|
<span>Equipment</span>
|
||||||
|
<div style="display: inline-flex; flex-direction: column; max-height: 1.2rem; overflow-y: hidden; align-items: stretch; justify-content: space-between; background-color: black;">
|
||||||
|
<span class="scroll-item">Hire</span>
|
||||||
|
<span class="scroll-item">Sale</span>
|
||||||
|
<span class="scroll-item">Service</span>
|
||||||
|
<span class="scroll-item">Install</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a href="" style="background-image: url('https://unsplash.it/400/400/?random&amp;time=0');">
|
||||||
|
<div style="background-color: black; padding: 0.2em; width: 80%; margin-left: auto; margin-right: auto;">
|
||||||
|
<div style="display: inline-flex; flex-direction: column; max-height: 1.2rem; overflow-y: hidden; align-items: stretch; justify-content: space-between; background-color: black;">
|
||||||
|
<span class="scroll-item">Website</span>
|
||||||
|
<span class="scroll-item">Software</span>
|
||||||
|
<span class="scroll-item">Product</span>
|
||||||
|
</div>
|
||||||
|
<span>Development</span>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<a style="background-image: url('https://unsplash.it/400/400/?random&amp;time=12');">
|
||||||
|
<span>About Us</span>
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
|||||||
168
public/404.html
Normal file
@@ -0,0 +1,168 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<title>404 Page not found :: Hyperlight Technical Services</title>
|
||||||
|
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<meta name="keywords" content="" />
|
||||||
|
<meta name="robots" content="noodp" />
|
||||||
|
<link rel="canonical" href="https://hyperlight-technical.co.uk/404.html" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/assets/style.css">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/assets/blue.css">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/style.css">
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://hyperlight-technical.co.uk/img/apple-touch-icon-144-precomposed.png">
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://hyperlight-technical.co.uk/img/favicon/blue.png">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:site" content="" />
|
||||||
|
|
||||||
|
<meta name="twitter:creator" content="" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:locale" content="en" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:title" content="404 Page not found :: Hyperlight Technical Services">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://hyperlight-technical.co.uk/404.html" />
|
||||||
|
<meta property="og:site_name" content="404 Page not found" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:image" content="https://hyperlight-technical.co.uk/img/favicon/blue.png">
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:image:width" content="2048">
|
||||||
|
<meta property="og:image:height" content="1024">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body class="blue">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container full headings--one-size">
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@keyframes blinker {
|
||||||
|
50% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<header class="header">
|
||||||
|
<div style="font-size: 2em;">
|
||||||
|
<span style="margin-bottom: -0.4;">HYPER
|
||||||
|
<hr style="width: 100%; border: 3px solid #7df9ff; border-radius: 5px; margin-bottom: -0.4em; margin-top: -0.39em;">
|
||||||
|
LIGHT <small style="font-size: 0.6em;">Technical Services</small>
|
||||||
|
<img src="lightning-helix.png" style="height: 100px; width: 100px; animation: blinker 1s linear;"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="menu">
|
||||||
|
<ul class="menu__inner menu__inner--desktop">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/stock">Hire</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/am">Additive Manufacturing</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="menu__inner menu__inner--mobile">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/stock">Hire</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/am">Additive Manufacturing</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
|
||||||
|
<div class="post">
|
||||||
|
<h1 class="post-title">404 — Page not found...</h1>
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
<a href="https://hyperlight-technical.co.uk/">Back to home page →</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="footer__inner">
|
||||||
|
|
||||||
|
<div class="copyright">
|
||||||
|
<span>© 2023 Powered by <a href="http://gohugo.io">Hugo</a></span>
|
||||||
|
|
||||||
|
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://hyperlight-technical.co.uk/assets/main.js"></script>
|
||||||
|
<script src="https://hyperlight-technical.co.uk/assets/prism.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
Est. 2019 | Hyperlight Technical Services is the trading name of Arona "AJ" Jones
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
BIN
public/HYPERLIGHT LOGO.png
Normal file
|
After Width: | Height: | Size: 116 KiB |
191
public/am/index.html
Normal file
@@ -0,0 +1,191 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<title>Additive Manufacturing in the Events Industry :: Hyperlight Technical Services</title>
|
||||||
|
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="description" content="Our founder holds a University of Nottingham Masters&rsquo; Degree in Additive Manufacturing (AM), more widely known as 3D Printing, and we are standing by to consult with anyone intrested in what we firmly believe is a huge opportunity for events.
|
||||||
|
AM can provide opportunity in delivering entirely custom experiences. It&rsquo;s a natural fit for props, but can also be used in more functional applications, creating bespoke fixtures on demand.
|
||||||
|
Manufacture of otherwise unavailable spare parts is another way in which we believe AM can contribute substantial value to the industry." />
|
||||||
|
<meta name="keywords" content="" />
|
||||||
|
<meta name="robots" content="noodp" />
|
||||||
|
<link rel="canonical" href="https://hyperlight-technical.co.uk/am/" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/assets/style.css">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/assets/blue.css">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/style.css">
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://hyperlight-technical.co.uk/img/apple-touch-icon-144-precomposed.png">
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://hyperlight-technical.co.uk/img/favicon/blue.png">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:site" content="" />
|
||||||
|
|
||||||
|
<meta name="twitter:creator" content="" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:locale" content="en" />
|
||||||
|
<meta property="og:type" content="article" />
|
||||||
|
<meta property="og:title" content="Additive Manufacturing in the Events Industry :: Hyperlight Technical Services">
|
||||||
|
<meta property="og:description" content="Our founder holds a University of Nottingham Masters&rsquo; Degree in Additive Manufacturing (AM), more widely known as 3D Printing, and we are standing by to consult with anyone intrested in what we firmly believe is a huge opportunity for events.
|
||||||
|
AM can provide opportunity in delivering entirely custom experiences. It&rsquo;s a natural fit for props, but can also be used in more functional applications, creating bespoke fixtures on demand.
|
||||||
|
Manufacture of otherwise unavailable spare parts is another way in which we believe AM can contribute substantial value to the industry." />
|
||||||
|
<meta property="og:url" content="https://hyperlight-technical.co.uk/am/" />
|
||||||
|
<meta property="og:site_name" content="Additive Manufacturing in the Events Industry" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:image" content="https://hyperlight-technical.co.uk/img/favicon/blue.png">
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:image:width" content="2048">
|
||||||
|
<meta property="og:image:height" content="1024">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body class="blue">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container full headings--one-size">
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@keyframes blinker {
|
||||||
|
50% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<header class="header">
|
||||||
|
<div style="font-size: 2em;">
|
||||||
|
<span style="margin-bottom: -0.4;">HYPER
|
||||||
|
<hr style="width: 100%; border: 3px solid #7df9ff; border-radius: 5px; margin-bottom: -0.4em; margin-top: -0.39em;">
|
||||||
|
LIGHT <small style="font-size: 0.6em;">Technical Services</small>
|
||||||
|
<img src="lightning-helix.png" style="height: 100px; width: 100px; animation: blinker 1s linear;"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="menu">
|
||||||
|
<ul class="menu__inner menu__inner--desktop">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/stock">Hire</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/am">Additive Manufacturing</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="menu__inner menu__inner--mobile">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/stock">Hire</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/am">Additive Manufacturing</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
|
||||||
|
<div class="post">
|
||||||
|
<h1 class="post-title">
|
||||||
|
<a href="https://hyperlight-technical.co.uk/am/">Additive Manufacturing in the Events Industry</a></h1>
|
||||||
|
<div class="post-meta">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content"><div>
|
||||||
|
<p>Our founder holds a University of Nottingham Masters’ Degree in Additive Manufacturing (AM), more widely known as 3D Printing, and we are standing by to consult with anyone intrested in what we firmly believe is a huge opportunity for events.</p>
|
||||||
|
<p>AM can provide opportunity in delivering entirely custom experiences. It’s a natural fit for props, but can also be used in more functional applications, creating bespoke fixtures on demand.</p>
|
||||||
|
<p>Manufacture of otherwise unavailable spare parts is another way in which we believe AM can contribute substantial value to the industry.</p>
|
||||||
|
<p>If any of this sounds intresting or of use to you, please do get in touch!</p>
|
||||||
|
|
||||||
|
</div></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="footer__inner">
|
||||||
|
|
||||||
|
<div class="copyright">
|
||||||
|
<span>© 2023 Powered by <a href="http://gohugo.io">Hugo</a></span>
|
||||||
|
|
||||||
|
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://hyperlight-technical.co.uk/assets/main.js"></script>
|
||||||
|
<script src="https://hyperlight-technical.co.uk/assets/prism.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
Est. 2019 | Hyperlight Technical Services is the trading name of Arona "AJ" Jones
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
BIN
public/assets/0fe15bb5eea5828156c892b0708bea40.woff
Normal file
BIN
public/assets/910c4f69908ca1b54b0fed395a9ad573.woff
Normal file
1
public/assets/blue.css
Normal file
1
public/assets/green.css
Normal file
1
public/assets/main.js
Normal file
@@ -0,0 +1 @@
|
|||||||
|
!function(n){var o={};function r(e){if(o[e])return o[e].exports;var t=o[e]={i:e,l:!1,exports:{}};return n[e].call(t.exports,t,t.exports,r),t.l=!0,t.exports}r.m=n,r.c=o,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)r.d(n,o,function(e){return t[e]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=0)}([function(e,t,n){n(1),e.exports=n(2)},function(e,t){function n(){return window.matchMedia(d).matches}function o(){c&&c.classList.toggle("hidden",!n()),i&&i.classList.toggle("hidden",n()),a&&a.classList.toggle("hidden",!n())}var r=document.querySelector(".container"),i=document.querySelector(".menu"),c=document.querySelector(".menu-trigger"),u=(document.querySelector(".menu__inner--desktop"),document.querySelector(".menu__sub-inner-more-trigger")),a=document.querySelector(".menu__sub-inner-more"),d=getComputedStyle(document.body).getPropertyValue("--phoneWidth");i&&i.addEventListener("click",function(e){return e.stopPropagation()}),a&&a.addEventListener("click",function(e){return e.stopPropagation()}),o(),document.body.addEventListener("click",function(){n()||!a||a.classList.contains("hidden")?n()&&!i.classList.contains("hidden")&&i.classList.add("hidden"):a.classList.add("hidden")}),window.addEventListener("resize",o),c&&c.addEventListener("click",function(e){e.stopPropagation(),i&&i.classList.toggle("hidden")}),u&&u.addEventListener("click",function(e){e.stopPropagation(),a&&a.classList.toggle("hidden"),a.getBoundingClientRect().right>r.getBoundingClientRect().right&&(a.style.left="auto",a.style.right=0)})},function(e,t){var n=getComputedStyle(document.body).getPropertyValue("--phoneWidth");window.matchMedia(n).matches||(languageSelector=document.querySelector(".language-selector-current"),moreLanguagesContainer=document.querySelector(".language-selector__more"),document.body.addEventListener("click",function(){moreLanguagesContainer&&!moreLanguagesContainer.classList.contains("hidden")&&moreLanguagesContainer.classList.add("hidden")}),languageSelector&&languageSelector.addEventListener("click",function(e){e.stopPropagation(),moreLanguagesContainer.classList.toggle("hidden")}))}]);
|
||||||
1
public/assets/pink.css
Normal file
8
public/assets/prism.js
Normal file
1
public/assets/red.css
Normal file
1
public/assets/style.css
Normal file
169
public/categories/index.html
Normal file
@@ -0,0 +1,169 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<title>Categories :: Hyperlight Technical Services</title>
|
||||||
|
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<meta name="keywords" content="" />
|
||||||
|
<meta name="robots" content="noodp" />
|
||||||
|
<link rel="canonical" href="https://hyperlight-technical.co.uk/categories/" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/assets/style.css">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/assets/blue.css">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/style.css">
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://hyperlight-technical.co.uk/img/apple-touch-icon-144-precomposed.png">
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://hyperlight-technical.co.uk/img/favicon/blue.png">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:site" content="" />
|
||||||
|
|
||||||
|
<meta name="twitter:creator" content="" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:locale" content="en" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:title" content="Categories :: Hyperlight Technical Services">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://hyperlight-technical.co.uk/categories/" />
|
||||||
|
<meta property="og:site_name" content="Categories" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:image" content="https://hyperlight-technical.co.uk/img/favicon/blue.png">
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:image:width" content="2048">
|
||||||
|
<meta property="og:image:height" content="1024">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link href="/categories/index.xml" rel="alternate" type="application/rss+xml" title="Hyperlight Technical Services" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body class="blue">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container full headings--one-size">
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@keyframes blinker {
|
||||||
|
50% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<header class="header">
|
||||||
|
<div style="font-size: 2em;">
|
||||||
|
<span style="margin-bottom: -0.4;">HYPER
|
||||||
|
<hr style="width: 100%; border: 3px solid #7df9ff; border-radius: 5px; margin-bottom: -0.4em; margin-top: -0.39em;">
|
||||||
|
LIGHT <small style="font-size: 0.6em;">Technical Services</small>
|
||||||
|
<img src="lightning-helix.png" style="height: 100px; width: 100px; animation: blinker 1s linear;"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="menu">
|
||||||
|
<ul class="menu__inner menu__inner--desktop">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/stock">Hire</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/am">Additive Manufacturing</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="menu__inner menu__inner--mobile">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/stock">Hire</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/am">Additive Manufacturing</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
|
||||||
|
<div class="terms">
|
||||||
|
<h1>Categories</h1>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="footer__inner">
|
||||||
|
|
||||||
|
<div class="copyright">
|
||||||
|
<span>© 2023 Powered by <a href="http://gohugo.io">Hugo</a></span>
|
||||||
|
|
||||||
|
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://hyperlight-technical.co.uk/assets/main.js"></script>
|
||||||
|
<script src="https://hyperlight-technical.co.uk/assets/prism.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
Est. 2019 | Hyperlight Technical Services is the trading name of Arona "AJ" Jones
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
13
public/categories/index.xml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Categories on Hyperlight Technical Services</title>
|
||||||
|
<link>https://hyperlight-technical.co.uk/categories/</link>
|
||||||
|
<description>Recent content in Categories on Hyperlight Technical Services</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
|
||||||
|
<atom:link href="https://hyperlight-technical.co.uk/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
</channel>
|
||||||
|
</rss>
|
||||||
BIN
public/gb.jpg
Normal file
|
After Width: | Height: | Size: 538 KiB |
BIN
public/img/favicon/blue.png
Normal file
|
After Width: | Height: | Size: 189 B |
BIN
public/img/favicon/green.png
Normal file
|
After Width: | Height: | Size: 190 B |
BIN
public/img/favicon/orange.png
Normal file
|
After Width: | Height: | Size: 190 B |
BIN
public/img/favicon/pink.png
Normal file
|
After Width: | Height: | Size: 190 B |
BIN
public/img/favicon/red.png
Normal file
|
After Width: | Height: | Size: 189 B |
210
public/index.html
Normal file
@@ -0,0 +1,210 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="Hugo 0.74.1" />
|
||||||
|
|
||||||
|
<title>Hyperlight Technical Services</title>
|
||||||
|
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="description" content="Trading Name of Arona Jones" />
|
||||||
|
<meta name="keywords" content="" />
|
||||||
|
<meta name="robots" content="noodp" />
|
||||||
|
<link rel="canonical" href="https://hyperlight-technical.co.uk/" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/assets/style.css">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/assets/blue.css">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/style.css">
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://hyperlight-technical.co.uk/img/apple-touch-icon-144-precomposed.png">
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://hyperlight-technical.co.uk/img/favicon/blue.png">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:site" content="" />
|
||||||
|
|
||||||
|
<meta name="twitter:creator" content="Arona Jones" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:locale" content="en" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:title" content="Hyperlight Technical Services">
|
||||||
|
<meta property="og:description" content="Trading Name of Arona Jones" />
|
||||||
|
<meta property="og:url" content="https://hyperlight-technical.co.uk/" />
|
||||||
|
<meta property="og:site_name" content="" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:image" content="https://hyperlight-technical.co.uk/img/favicon/blue.png">
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:image:width" content="2048">
|
||||||
|
<meta property="og:image:height" content="1024">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link href="/index.xml" rel="alternate" type="application/rss+xml" title="Hyperlight Technical Services" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body class="blue">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container full headings--one-size">
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@keyframes blinker {
|
||||||
|
50% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<header class="header">
|
||||||
|
<div style="font-size: 2em;">
|
||||||
|
<span style="margin-bottom: -0.4;">HYPER
|
||||||
|
<hr style="width: 100%; border: 3px solid #7df9ff; border-radius: 5px; margin-bottom: -0.4em; margin-top: -0.39em;">
|
||||||
|
LIGHT <small style="font-size: 0.6em;">Technical Services</small>
|
||||||
|
<img src="lightning-helix.png" style="height: 100px; width: 100px; animation: blinker 1s linear;"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="menu">
|
||||||
|
<ul class="menu__inner menu__inner--desktop">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/stock">Hire</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/am">Additive Manufacturing</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="menu__inner menu__inner--mobile">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/stock">Hire</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/am">Additive Manufacturing</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="index-content ">
|
||||||
|
<p><img src="/tte.jpg#center" alt="TTE2023"></p>
|
||||||
|
<p>Hyperlight Technical Services was established in Nottingham in 2019 and provides technical support and equipment hire for events across the Midlands.</p>
|
||||||
|
<p>We have supported an extremely wide range of events in and around Nottingham, with ‘insider experience’ of a huge number of venues. We have planned and delivered everything from dance shows to national sports championships.</p>
|
||||||
|
<p>We have strong links with local suppliers, allowing us to fufill a diverse range of events. Whatever equipment you need, whatever level of support you require, we are here to help.</p>
|
||||||
|
<p>In addition to event services and support we operate a used equipment sales service. If you have old equipment gathering dust (a pet hate of ours!), we would love to make you an offer. Likewise, if you are after something in particular, we can likely help you get it. Just ask!</p>
|
||||||
|
<h1 id="safety-and-compliance">Safety and Compliance</h1>
|
||||||
|
<p>Hyperlight strives to exceed expectations in all event delivery areas.
|
||||||
|
Health and Safety is at the forefront of this. We operate at and above industry standard in all areas and actively seek continual professional development for our staff.</p>
|
||||||
|
<p><strong>Electrical Safety</strong></p>
|
||||||
|
<p>Hyperlight conducts in-house in-service inspection and testing of electrical equipment using engineers with appropriate City and Guilds qualificiations</p>
|
||||||
|
<p>All electrical installations undertaken by Hyperlight are planned and carried out by experienced professionals and in accordance with BS7671 and BS7909 using high-quality equipment. Testing is conducted using world class UKAS-calibrated equipment and records produced in accordance with BS7909.</p>
|
||||||
|
<h1 id="sustainability">Sustainability</h1>
|
||||||
|
<p>Hyperlight are constantly looking for ways to reduce the environmental impact of our operations as much as possible. We promise the following:</p>
|
||||||
|
<ol>
|
||||||
|
<li>Reusable alternatives to single use wherever possible (we use releasable zip ties rather PVC tape to secure our cables)</li>
|
||||||
|
<li>Investment into new equipment where it brings an energy-saving, and therefore environmental, benefit.</li>
|
||||||
|
<li>Innovative strategies to reduce waste and promote re-use</li>
|
||||||
|
<li>We use grid power wherever possible. Where it is not, we will prefer to use alternative generation (battery packs, hydrogen) over diesel.</li>
|
||||||
|
<li>Try to find clients, suppliers and contractors who share these key values</li>
|
||||||
|
</ol>
|
||||||
|
<h1 id="contact">Contact:</h1>
|
||||||
|
<p><a href="mailto:hello@hyperlight-technical.co.uk">hello@hyperlight-technical.co.uk</a></p>
|
||||||
|
<p>07449192971</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="posts">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagination">
|
||||||
|
<div class="pagination__buttons">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="footer__inner">
|
||||||
|
|
||||||
|
<div class="copyright">
|
||||||
|
<span>© 2023 Powered by <a href="http://gohugo.io">Hugo</a></span>
|
||||||
|
|
||||||
|
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://hyperlight-technical.co.uk/assets/main.js"></script>
|
||||||
|
<script src="https://hyperlight-technical.co.uk/assets/prism.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
Est. 2019 | Hyperlight Technical Services is the trading name of Arona "AJ" Jones
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
35
public/index.xml
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Hyperlight Technical Services</title>
|
||||||
|
<link>https://hyperlight-technical.co.uk/</link>
|
||||||
|
<description>Recent content on Hyperlight Technical Services</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
|
||||||
|
<atom:link href="https://hyperlight-technical.co.uk/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Additive Manufacturing in the Events Industry</title>
|
||||||
|
<link>https://hyperlight-technical.co.uk/am/</link>
|
||||||
|
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||||
|
|
||||||
|
<guid>https://hyperlight-technical.co.uk/am/</guid>
|
||||||
|
<description>Our founder holds a University of Nottingham Masters&rsquo; Degree in Additive Manufacturing (AM), more widely known as 3D Printing, and we are standing by to consult with anyone intrested in what we firmly believe is a huge opportunity for events.
|
||||||
|
AM can provide opportunity in delivering entirely custom experiences. It&rsquo;s a natural fit for props, but can also be used in more functional applications, creating bespoke fixtures on demand.
|
||||||
|
Manufacture of otherwise unavailable spare parts is another way in which we believe AM can contribute substantial value to the industry.</description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Hire</title>
|
||||||
|
<link>https://hyperlight-technical.co.uk/stock/</link>
|
||||||
|
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||||
|
|
||||||
|
<guid>https://hyperlight-technical.co.uk/stock/</guid>
|
||||||
|
<description>Hyperlight carry a wide range of high quality stock, including a significant quantity of IT equipment that may not be easily or competitively available from other suppliers.
|
||||||
|
Currently, we specialise in distribution, power cable and networking equipment with significant stock of the following:
|
||||||
|
13A cable 16A cable 16A splits 16A to 13A adaptors Ethernet cable Unmanaged 5 and 8 Port Network Switches Managed/Smart Network Switches We also have a full range PA system with four way monitor rig available for hire, along with a selection of lighting.</description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
</channel>
|
||||||
|
</rss>
|
||||||
BIN
public/lightning-helix.png
Normal file
|
After Width: | Height: | Size: 476 KiB |
BIN
public/main.png
Normal file
|
After Width: | Height: | Size: 125 KiB |
1
public/page/1/index.html
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<!DOCTYPE html><html><head><title>https://hyperlight-technical.co.uk/</title><link rel="canonical" href="https://hyperlight-technical.co.uk/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://hyperlight-technical.co.uk/" /></head></html>
|
||||||
25
public/sitemap.xml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||||
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://hyperlight-technical.co.uk/</loc>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://hyperlight-technical.co.uk/am/</loc>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://hyperlight-technical.co.uk/categories/</loc>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://hyperlight-technical.co.uk/stock/</loc>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://hyperlight-technical.co.uk/tags/</loc>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
</urlset>
|
||||||
201
public/stock/index.html
Normal file
@@ -0,0 +1,201 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<title>Hire :: Hyperlight Technical Services</title>
|
||||||
|
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="description" content="Hyperlight carry a wide range of high quality stock, including a significant quantity of IT equipment that may not be easily or competitively available from other suppliers.
|
||||||
|
Currently, we specialise in distribution, power cable and networking equipment with significant stock of the following:
|
||||||
|
13A cable 16A cable 16A splits 16A to 13A adaptors Ethernet cable Unmanaged 5 and 8 Port Network Switches Managed/Smart Network Switches We also have a full range PA system with four way monitor rig available for hire, along with a selection of lighting." />
|
||||||
|
<meta name="keywords" content="" />
|
||||||
|
<meta name="robots" content="noodp" />
|
||||||
|
<link rel="canonical" href="https://hyperlight-technical.co.uk/stock/" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/assets/style.css">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/assets/blue.css">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/style.css">
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://hyperlight-technical.co.uk/img/apple-touch-icon-144-precomposed.png">
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://hyperlight-technical.co.uk/img/favicon/blue.png">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:site" content="" />
|
||||||
|
|
||||||
|
<meta name="twitter:creator" content="" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:locale" content="en" />
|
||||||
|
<meta property="og:type" content="article" />
|
||||||
|
<meta property="og:title" content="Hire :: Hyperlight Technical Services">
|
||||||
|
<meta property="og:description" content="Hyperlight carry a wide range of high quality stock, including a significant quantity of IT equipment that may not be easily or competitively available from other suppliers.
|
||||||
|
Currently, we specialise in distribution, power cable and networking equipment with significant stock of the following:
|
||||||
|
13A cable 16A cable 16A splits 16A to 13A adaptors Ethernet cable Unmanaged 5 and 8 Port Network Switches Managed/Smart Network Switches We also have a full range PA system with four way monitor rig available for hire, along with a selection of lighting." />
|
||||||
|
<meta property="og:url" content="https://hyperlight-technical.co.uk/stock/" />
|
||||||
|
<meta property="og:site_name" content="Hire" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:image" content="https://hyperlight-technical.co.uk/img/favicon/blue.png">
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:image:width" content="2048">
|
||||||
|
<meta property="og:image:height" content="1024">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body class="blue">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container full headings--one-size">
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@keyframes blinker {
|
||||||
|
50% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<header class="header">
|
||||||
|
<div style="font-size: 2em;">
|
||||||
|
<span style="margin-bottom: -0.4;">HYPER
|
||||||
|
<hr style="width: 100%; border: 3px solid #7df9ff; border-radius: 5px; margin-bottom: -0.4em; margin-top: -0.39em;">
|
||||||
|
LIGHT <small style="font-size: 0.6em;">Technical Services</small>
|
||||||
|
<img src="lightning-helix.png" style="height: 100px; width: 100px; animation: blinker 1s linear;"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="menu">
|
||||||
|
<ul class="menu__inner menu__inner--desktop">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/stock">Hire</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/am">Additive Manufacturing</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="menu__inner menu__inner--mobile">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/stock">Hire</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/am">Additive Manufacturing</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
|
||||||
|
<div class="post">
|
||||||
|
<h1 class="post-title">
|
||||||
|
<a href="https://hyperlight-technical.co.uk/stock/">Hire</a></h1>
|
||||||
|
<div class="post-meta">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post-content"><div>
|
||||||
|
<p>Hyperlight carry a wide range of high quality stock, including a significant quantity of IT equipment that may not be easily or competitively available from other suppliers.</p>
|
||||||
|
<p>Currently, we specialise in distribution, power cable and networking equipment with significant stock of the following:</p>
|
||||||
|
<ul>
|
||||||
|
<li>13A cable</li>
|
||||||
|
<li>16A cable</li>
|
||||||
|
<li>16A splits</li>
|
||||||
|
<li>16A to 13A adaptors</li>
|
||||||
|
<li>Ethernet cable</li>
|
||||||
|
<li>Unmanaged 5 and 8 Port Network Switches</li>
|
||||||
|
<li>Managed/Smart Network Switches</li>
|
||||||
|
</ul>
|
||||||
|
<p>We also have a full range PA system with four way monitor rig available for hire, along with a selection of lighting. Get in touch for more details.</p>
|
||||||
|
<p>We will leverage links with our own suppliers to supply nearly anything you could ask for at a competitive price.</p>
|
||||||
|
<p><strong>Enquire now: <a href="mailto:hire@hyperlight-technical.co.uk">hire@hyperlight-technical.co.uk</a>.</strong></p>
|
||||||
|
|
||||||
|
</div></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="footer__inner">
|
||||||
|
|
||||||
|
<div class="copyright">
|
||||||
|
<span>© 2023 Powered by <a href="http://gohugo.io">Hugo</a></span>
|
||||||
|
|
||||||
|
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://hyperlight-technical.co.uk/assets/main.js"></script>
|
||||||
|
<script src="https://hyperlight-technical.co.uk/assets/prism.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
Est. 2019 | Hyperlight Technical Services is the trading name of Arona "AJ" Jones
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
8
public/style.css
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
img[src$='#center']
|
||||||
|
{
|
||||||
|
display: block;
|
||||||
|
margin: 0.7rem auto; /* you can replace the vertical '0.7rem' by
|
||||||
|
whatever floats your boat, but keep the
|
||||||
|
horizontal 'auto' for this to work */
|
||||||
|
/* whatever else styles you fancy here */
|
||||||
|
}
|
||||||
169
public/tags/index.html
Normal file
@@ -0,0 +1,169 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<title>Tags :: Hyperlight Technical Services</title>
|
||||||
|
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<meta name="keywords" content="" />
|
||||||
|
<meta name="robots" content="noodp" />
|
||||||
|
<link rel="canonical" href="https://hyperlight-technical.co.uk/tags/" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/assets/style.css">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/assets/blue.css">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://hyperlight-technical.co.uk/style.css">
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://hyperlight-technical.co.uk/img/apple-touch-icon-144-precomposed.png">
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://hyperlight-technical.co.uk/img/favicon/blue.png">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:site" content="" />
|
||||||
|
|
||||||
|
<meta name="twitter:creator" content="" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:locale" content="en" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:title" content="Tags :: Hyperlight Technical Services">
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:url" content="https://hyperlight-technical.co.uk/tags/" />
|
||||||
|
<meta property="og:site_name" content="Tags" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:image" content="https://hyperlight-technical.co.uk/img/favicon/blue.png">
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:image:width" content="2048">
|
||||||
|
<meta property="og:image:height" content="1024">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link href="/tags/index.xml" rel="alternate" type="application/rss+xml" title="Hyperlight Technical Services" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body class="blue">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container full headings--one-size">
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@keyframes blinker {
|
||||||
|
50% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<header class="header">
|
||||||
|
<div style="font-size: 2em;">
|
||||||
|
<span style="margin-bottom: -0.4;">HYPER
|
||||||
|
<hr style="width: 100%; border: 3px solid #7df9ff; border-radius: 5px; margin-bottom: -0.4em; margin-top: -0.39em;">
|
||||||
|
LIGHT <small style="font-size: 0.6em;">Technical Services</small>
|
||||||
|
<img src="lightning-helix.png" style="height: 100px; width: 100px; animation: blinker 1s linear;"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="menu">
|
||||||
|
<ul class="menu__inner menu__inner--desktop">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/stock">Hire</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/am">Additive Manufacturing</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="menu__inner menu__inner--mobile">
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/stock">Hire</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a href="/am">Additive Manufacturing</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
|
||||||
|
<div class="terms">
|
||||||
|
<h1>Tags</h1>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="footer__inner">
|
||||||
|
|
||||||
|
<div class="copyright">
|
||||||
|
<span>© 2023 Powered by <a href="http://gohugo.io">Hugo</a></span>
|
||||||
|
|
||||||
|
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script src="https://hyperlight-technical.co.uk/assets/main.js"></script>
|
||||||
|
<script src="https://hyperlight-technical.co.uk/assets/prism.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
Est. 2019 | Hyperlight Technical Services is the trading name of Arona "AJ" Jones
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
13
public/tags/index.xml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Tags on Hyperlight Technical Services</title>
|
||||||
|
<link>https://hyperlight-technical.co.uk/tags/</link>
|
||||||
|
<description>Recent content in Tags on Hyperlight Technical Services</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
|
||||||
|
<atom:link href="https://hyperlight-technical.co.uk/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
</channel>
|
||||||
|
</rss>
|
||||||
BIN
public/tte.jpg
Normal file
|
After Width: | Height: | Size: 182 KiB |