Legacy merge and update after the Summer 2018 downtime
34
.ci-dev.ps1
@ -1,34 +0,0 @@
|
||||
if (Test-Path "C:\inetpub\wwwroot\dev\build-tmp.enpaul") {
|
||||
Remove-Item -Path "C:\inetpub\wwwroot\dev\build-tmp.enpaul" -Recurse -Force
|
||||
}
|
||||
|
||||
New-Item -Path "C:\inetpub\wwwroot\dev\" -Name "build-tmp.enpaul" -ItemType Directory -Force
|
||||
|
||||
Copy-Item -Path ".\*" -Destination "C:\inetpub\wwwroot\dev\build-tmp.enpaul\" -Force -Recurse
|
||||
|
||||
if (Test-Path "C:\inetpub\wwwroot\dev\build-tmp.enpaul\.git") {
|
||||
Remove-Item -Path "C:\inetpub\wwwroot\dev\build-tmp.enpaul\.git" -Recurse -Force
|
||||
}
|
||||
if (Test-Path "C:\inetpub\wwwroot\dev\build-tmp.enpaul\.gitlab-ci.yml") {
|
||||
Remove-Item -Path "C:\inetpub\wwwroot\dev\build-tmp.enpaul\.gitlab-ci.yml" -Force
|
||||
}
|
||||
|
||||
Remove-Item -Path "C:\inetpub\wwwroot\dev\build-tmp.enpaul\*.ps1" -Force
|
||||
|
||||
if (Test-Path "C:\inetpub\wwwroot\dev\build-tmp.enpaul\.gitignore") {
|
||||
Remove-Item -Path "C:\inetpub\wwwroot\dev\build-tmp.enpaul\.gitignore" -Force
|
||||
}
|
||||
if (Test-Path "C:\inetpub\wwwroot\dev\build-tmp.enpaul\.htaccess") {
|
||||
Remove-Item -Path "C:\inetpub\wwwroot\dev\build-tmp.enpaul\.htaccess" -Force
|
||||
}
|
||||
|
||||
if (Test-Path "C:\inetpub\wwwroot\dev\enpaul") {
|
||||
Rename-Item -Path "C:\inetpub\wwwroot\dev\enpaul" -NewName "enpaul.old" -Force
|
||||
}
|
||||
|
||||
Rename-Item -Path "C:\inetpub\wwwroot\dev\build-tmp.enpaul" -NewName "enpaul" -Force
|
||||
|
||||
if (Test-Path "C:\inetpub\wwwroot\dev\enpaul.old") {
|
||||
Remove-Item -path "C:\inetpub\wwwroot\dev\enpaul.old" -Recurse -Force
|
||||
}
|
||||
exit
|
@ -1,35 +0,0 @@
|
||||
if (Test-Path "C:\inetpub\wwwroot\tmp-build.enpaul") {
|
||||
Remove-Item -Path "C:\inetpub\wwwroot\tmp-build.enpaul" -Recurse -Force
|
||||
}
|
||||
|
||||
New-Item -Path "C:\inetpub\wwwroot\" -Name "tmp-build.enpaul" -ItemType Directory -Force
|
||||
|
||||
Copy-Item -Path ".\*" -Destination "C:\inetpub\wwwroot\tmp-build.enpaul\" -Force -Recurse
|
||||
|
||||
if (Test-Path "C:\inetpub\wwwroot\tmp-build.enpaul\.git") {
|
||||
Remove-Item -Path "C:\inetpub\wwwroot\tmp-build.enpaul\.git" -Recurse -Force
|
||||
}
|
||||
if (Test-Path "C:\inetpub\wwwroot\tmp-build.enpaul\.gitlab-ci.yml") {
|
||||
Remove-Item -Path "C:\inetpub\wwwroot\tmp-build.enpaul\.gitlab-ci.yml" -Force
|
||||
}
|
||||
|
||||
Remove-Item -Path "C:\inetpub\wwwroot\tmp-build.enpaul\*.ps1" -Force
|
||||
|
||||
if (Test-Path "C:\inetpub\wwwroot\tmp-build.enpaul\.gitignore") {
|
||||
Remove-Item -Path "C:\inetpub\wwwroot\tmp-build.enpaul\.gitignore" -Force
|
||||
}
|
||||
if (Test-Path "C:\inetpub\wwwroot\tmp-build.enpaul\.htaccess") {
|
||||
Remove-Item -Path "C:\inetpub\wwwroot\tmp-build.enpaul\.htaccess" -Force
|
||||
}
|
||||
|
||||
if (Test-Path "C:\inetpub\wwwroot\enpaul") {
|
||||
Rename-Item -Path "C:\inetpub\wwwroot\enpaul" -NewName "enpaul.old" -Force
|
||||
}
|
||||
|
||||
Rename-Item -Path "C:\inetpub\wwwroot\tmp-build.enpaul" -NewName "enpaul" -Force
|
||||
|
||||
if (Test-Path "C:\inetpub\wwwroot\enpaul.old") {
|
||||
Remove-Item -path "C:\inetpub\wwwroot\enpaul.old" -Recurse -Force
|
||||
}
|
||||
|
||||
exit
|
@ -1,53 +0,0 @@
|
||||
stages:
|
||||
- deploy-release-apache
|
||||
- deploy-dev-apache
|
||||
|
||||
#IIS Production:
|
||||
# stage: deploy-release-iis
|
||||
# script:
|
||||
# - powershell .\.ci-release.ps1
|
||||
# only:
|
||||
# - master
|
||||
# tags:
|
||||
# - release-iis
|
||||
|
||||
#IIS Development:
|
||||
# stage: deploy-dev-iis
|
||||
# script:
|
||||
# - powershell .\.ci-dev.ps1
|
||||
# only:
|
||||
# - development
|
||||
# tags:
|
||||
# - dev-iis
|
||||
|
||||
Apache Production:
|
||||
stage: deploy-release-apache
|
||||
script:
|
||||
- "[ -d /var/www/html/build-tmp.enpaul ] && rm -r /var/www/html/build-tmp.enpaul"
|
||||
- mkdir /var/www/html/build-tmp.enpaul
|
||||
- cp -r ./* /var/www/html/build-tmp.enpaul/
|
||||
- cp ./.htaccess /var/www/html/build-tmp.enpaul/.htaccess
|
||||
- rm /var/www/html/build-tmp.enpaul/web.config
|
||||
- "[ -d /var/www/html/enpaul ] && mv /var/www/html/enpaul /var/www/html/enpaul.old"
|
||||
- mv /var/www/html/build-tmp.enpaul /var/www/html/enpaul
|
||||
- "[ -d /var/www/html/enpaul.old ] && rm -r /var/www/html/enpaul.old"
|
||||
only:
|
||||
- master
|
||||
tags:
|
||||
- release-apache
|
||||
|
||||
Apache Development:
|
||||
stage: deploy-dev-apache
|
||||
script:
|
||||
- "[ -d /var/www/html/build-tmp.enpaul-dev ] && rm -r /var/www/html/build-tmp.enpaul-dev"
|
||||
- mkdir /var/www/html/build-tmp.enpaul-dev
|
||||
- cp -r ./* /var/www/html/build-tmp.enpaul-dev/
|
||||
- cp ./.htaccess /var/www/html/build-tmp.enpaul-dev/.htaccess
|
||||
- rm /var/www/html/build-tmp.enpaul-dev/web.config
|
||||
- "[ -d /var/www/html/enpaul-dev ] && mv /var/www/html/enpaul-dev /var/www/html/enpaul-dev.old"
|
||||
- mv /var/www/html/build-tmp.enpaul-dev /var/www/html/enpaul-dev
|
||||
- "[ -d /var/www/html/enpaul-dev.old ] && rm -r /var/www/html/enpaul-dev.old"
|
||||
only:
|
||||
- development
|
||||
tags:
|
||||
- dev-apache
|
@ -11,15 +11,12 @@
|
||||
|
||||
<!-- Page title and favicon definition -->
|
||||
<title>ERROR 401</title>
|
||||
<link rel="shortcut icon" href="/_error/img/e-b.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/_error/img/e-b.png">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="16x16">
|
||||
<link rel="shortcut icon" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
|
||||
<!-- CSS references -->
|
||||
<link href="/_error/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/style.css" rel="stylesheet">
|
||||
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/css/style.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
|
@ -11,15 +11,12 @@
|
||||
|
||||
<!-- Page title and favicon definition -->
|
||||
<title>ERROR 403</title>
|
||||
<link rel="shortcut icon" href="/_error/img/e-b.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/_error/img/e-b.png">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="16x16">
|
||||
<link rel="shortcut icon" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
|
||||
<!-- CSS references -->
|
||||
<link href="/_error/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/style.css" rel="stylesheet">
|
||||
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/css/style.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
|
@ -11,15 +11,12 @@
|
||||
|
||||
<!-- Page title and favicon definition -->
|
||||
<title>ERROR 404</title>
|
||||
<link rel="shortcut icon" href="/_error/img/e-b.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/_error/img/e-b.png">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="16x16">
|
||||
<link rel="shortcut icon" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
|
||||
<!-- CSS references -->
|
||||
<link href="/_error/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/style.css" rel="stylesheet">
|
||||
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/css/style.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
|
@ -11,15 +11,12 @@
|
||||
|
||||
<!-- Page title and favicon definition -->
|
||||
<title>ERROR 405</title>
|
||||
<link rel="shortcut icon" href="/_error/img/e-b.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/_error/img/e-b.png">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="16x16">
|
||||
<link rel="shortcut icon" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
|
||||
<!-- CSS references -->
|
||||
<link href="/_error/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/style.css" rel="stylesheet">
|
||||
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/css/style.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
|
@ -11,15 +11,12 @@
|
||||
|
||||
<!-- Page title and favicon definition -->
|
||||
<title>ERROR 406</title>
|
||||
<link rel="shortcut icon" href="/_error/img/e-b.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/_error/img/e-b.png">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="16x16">
|
||||
<link rel="shortcut icon" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
|
||||
<!-- CSS references -->
|
||||
<link href="/_error/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/style.css" rel="stylesheet">
|
||||
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/css/style.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
|
@ -11,15 +11,12 @@
|
||||
|
||||
<!-- Page title and favicon definition -->
|
||||
<title>ERROR 412</title>
|
||||
<link rel="shortcut icon" href="/_error/img/e-b.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/_error/img/e-b.png">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="16x16">
|
||||
<link rel="shortcut icon" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
|
||||
<!-- CSS references -->
|
||||
<link href="/_error/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/style.css" rel="stylesheet">
|
||||
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/css/style.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
|
@ -11,15 +11,12 @@
|
||||
|
||||
<!-- Page title and favicon definition -->
|
||||
<title>ERROR 500</title>
|
||||
<link rel="shortcut icon" href="/_error/img/e-b.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/_error/img/e-b.png">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="16x16">
|
||||
<link rel="shortcut icon" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
|
||||
<!-- CSS references -->
|
||||
<link href="/_error/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/style.css" rel="stylesheet">
|
||||
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/css/style.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
|
@ -11,15 +11,12 @@
|
||||
|
||||
<!-- Page title and favicon definition -->
|
||||
<title>ERROR 501</title>
|
||||
<link rel="shortcut icon" href="/_error/img/e-b.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/_error/img/e-b.png">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="16x16">
|
||||
<link rel="shortcut icon" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
|
||||
<!-- CSS references -->
|
||||
<link href="/_error/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/style.css" rel="stylesheet">
|
||||
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/css/style.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
|
@ -11,15 +11,12 @@
|
||||
|
||||
<!-- Page title and favicon definition -->
|
||||
<title>ERROR 502</title>
|
||||
<link rel="shortcut icon" href="/_error/img/e-b.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/_error/img/e-b.png">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/_error/img/e-b.png" sizes="16x16">
|
||||
<link rel="shortcut icon" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
|
||||
<!-- CSS references -->
|
||||
<link href="/_error/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/_error/css/style.css" rel="stylesheet">
|
||||
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/css/style.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
|
6
_error/css/bootstrap.min.css
vendored
4
_error/css/font-awesome.min.css
vendored
@ -1,881 +0,0 @@
|
||||
/*
|
||||
Theme Name: Imperial
|
||||
Theme URL: https://bootstrapmade.com/imperial-free-onepage-bootstrap-template/
|
||||
Author: BootstrapMade
|
||||
Author URL: https://bootstrapmade.com
|
||||
*/
|
||||
/*--------------------------------------------------------------
|
||||
# General
|
||||
--------------------------------------------------------------*/
|
||||
body {
|
||||
background: #000;
|
||||
color: #999;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #1a82d8;
|
||||
transition: 0.5s;
|
||||
}
|
||||
|
||||
a:hover, a:active, a:focus {
|
||||
color: #03c5ec;
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
p {
|
||||
padding: 0;
|
||||
margin: 0 0 30px 0;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-family: "Raleway", sans-serif;
|
||||
font-weight: 400;
|
||||
margin: 0 0 20px 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Back to top button */
|
||||
.back-to-top {
|
||||
position: fixed;
|
||||
display: none;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
color: #fff;
|
||||
padding: 6px 12px 9px 12px;
|
||||
font-size: 16px;
|
||||
border-radius: 2px;
|
||||
right: 15px;
|
||||
bottom: 15px;
|
||||
transition: background 0.5s;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.back-to-top {
|
||||
bottom: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.back-to-top:focus {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
color: #fff;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.back-to-top:hover {
|
||||
background: #003777;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Welcome
|
||||
--------------------------------------------------------------*/
|
||||
#top {
|
||||
display: table;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
background: url(../img/network.jpg) top center fixed;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
#top .hero-logo {
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
#top .hero-logo img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
#top .top-container {
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
display: table-cell;
|
||||
margin: 0;
|
||||
padding: 15rem;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#top h1 {
|
||||
margin: 30px 0 10px 0;
|
||||
font-weight: 700;
|
||||
line-height: 48px;
|
||||
text-transform: uppercase;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
#top h1 {
|
||||
font-size: 28px;
|
||||
line-height: 36px;
|
||||
}
|
||||
}
|
||||
|
||||
#top h2 {
|
||||
color: #999;
|
||||
margin-bottom: 50px;
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
#top h2 {
|
||||
font-size: 20px;
|
||||
line-height: 26px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
#top h2 .rotating {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
#top .actions a {
|
||||
font-family: "Raleway", sans-serif;
|
||||
text-transform: uppercase;
|
||||
font-weight: 500;
|
||||
font-size: 16px;
|
||||
letter-spacing: 1px;
|
||||
display: inline-block;
|
||||
padding: 8px 20px;
|
||||
border-radius: 2px;
|
||||
transition: 0.5s;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#top .btn-header {
|
||||
border: 2px solid #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#top .btn-header:hover {
|
||||
background: #1a82d8;
|
||||
border: 2px solid #1a82de;
|
||||
}
|
||||
|
||||
#top .error-icon {
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Header
|
||||
--------------------------------------------------------------*/
|
||||
#header {
|
||||
background: black;
|
||||
padding: 15px 0;
|
||||
height: 80px;
|
||||
}
|
||||
|
||||
#header #logo {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#header #logo h1 {
|
||||
font-size: 36px;
|
||||
margin: 0;
|
||||
padding: 6px 0;
|
||||
line-height: 1;
|
||||
font-family: "Raleway", sans-serif;
|
||||
font-weight: 700;
|
||||
letter-spacing: 3px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#header #logo h1 a, #header #logo h1 a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#header #logo img {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
max-height: 50px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
#header {
|
||||
height: 80px;
|
||||
}
|
||||
#header #logo h1 {
|
||||
font-size: 26px;
|
||||
}
|
||||
#header #logo img {
|
||||
max-height: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.is-sticky #header {
|
||||
background: black;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Navigation Menu
|
||||
--------------------------------------------------------------*/
|
||||
/* Nav Menu Essentials */
|
||||
.nav-menu, .nav-menu * {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.nav-menu ul {
|
||||
position: absolute;
|
||||
display: none;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.nav-menu li {
|
||||
position: relative;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.nav-menu > li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.nav-menu li:hover > ul,
|
||||
.nav-menu li.sfHover > ul {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.nav-menu ul ul {
|
||||
top: 0;
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
.nav-menu ul li {
|
||||
min-width: 180px;
|
||||
}
|
||||
|
||||
/* Nav Menu Arrows */
|
||||
.sf-arrows .sf-with-ul {
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
.sf-arrows .sf-with-ul:after {
|
||||
content: "\f107";
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
font-family: FontAwesome;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.sf-arrows ul .sf-with-ul:after {
|
||||
content: "\f105";
|
||||
}
|
||||
|
||||
/* Nav Meu Container */
|
||||
#nav-menu-container {
|
||||
float: right;
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
#nav-menu-container {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Nav Meu Styling */
|
||||
.nav-menu a {
|
||||
padding: 10px 15px;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-weight: 300;
|
||||
font-size: 14px;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.nav-menu a:hover, .nav-menu li:hover > a, .nav-menu .menu-active > a {
|
||||
color: #1a82d8;
|
||||
}
|
||||
|
||||
.nav-menu ul {
|
||||
margin: 4px 0 0 15px;
|
||||
box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
|
||||
.nav-menu ul li {
|
||||
background: #fff;
|
||||
border-top: 1px solid #f4f4f4;
|
||||
}
|
||||
|
||||
.nav-menu ul li:first-child {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.nav-menu ul li:hover {
|
||||
background: #f6f6f6;
|
||||
}
|
||||
|
||||
.nav-menu ul li a {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.nav-menu ul ul {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Mobile Nav Toggle */
|
||||
#mobile-nav-toggle {
|
||||
position: fixed;
|
||||
right: 0;
|
||||
top: 0;
|
||||
z-index: 999;
|
||||
margin: 20px 20px 0 0;
|
||||
border: 0;
|
||||
background: none;
|
||||
font-size: 24px;
|
||||
display: none;
|
||||
transition: all 0.4s;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#mobile-nav-toggle i {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
#mobile-nav-toggle {
|
||||
display: inline;
|
||||
}
|
||||
}
|
||||
|
||||
/* Mobile Nav Styling */
|
||||
#mobile-nav {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
padding-top: 18px;
|
||||
bottom: 0;
|
||||
z-index: 998;
|
||||
background: rgba(0, 0, 0, 0.9);
|
||||
left: -260px;
|
||||
width: 260px;
|
||||
overflow-y: auto;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
#mobile-nav ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
#mobile-nav ul li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#mobile-nav ul li a {
|
||||
color: #fff;
|
||||
font-size: 16px;
|
||||
overflow: hidden;
|
||||
padding: 10px 22px 10px 15px;
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
width: 100%;
|
||||
display: block;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
#mobile-nav ul li a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#mobile-nav ul li li {
|
||||
padding-left: 30px;
|
||||
}
|
||||
|
||||
#mobile-nav ul .menu-has-children i {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
z-index: 99;
|
||||
padding: 15px;
|
||||
cursor: pointer;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#mobile-nav ul .menu-has-children i.fa-chevron-up {
|
||||
color: #1a82d8;
|
||||
}
|
||||
|
||||
#mobile-nav ul .menu-item-active {
|
||||
color: #1a82d8;
|
||||
}
|
||||
|
||||
#mobile-body-overly {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 997;
|
||||
top: 0;
|
||||
left: 0;
|
||||
position: fixed;
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Mobile Nav body classes */
|
||||
body.mobile-nav-active {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
body.mobile-nav-active #mobile-nav {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
body.mobile-nav-active #mobile-nav-toggle {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Sections
|
||||
--------------------------------------------------------------*/
|
||||
/* Sections Common
|
||||
--------------------------------*/
|
||||
.section-title {
|
||||
font-size: 32px;
|
||||
color: white;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.section-description {
|
||||
text-align: center;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.section-title-divider {
|
||||
width: 50px;
|
||||
height: 3px;
|
||||
background: #003777;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
/* Get Started Section
|
||||
--------------------------------*/
|
||||
#about {
|
||||
background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url("../img/engine.jpg") fixed center center;
|
||||
padding: 80px 0;
|
||||
}
|
||||
|
||||
#about .about-title {
|
||||
color: #bababa;
|
||||
font-weight: 600;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
#about .about-text {
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
#about .about-text:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#about .about-portrait {
|
||||
display: block;
|
||||
margin: auto;
|
||||
max-height: 30rem;
|
||||
}
|
||||
|
||||
/* Network Section
|
||||
--------------------------------*/
|
||||
#network {
|
||||
background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url("../img/datacenter.jpg") fixed center center;
|
||||
background-size: cover;
|
||||
padding: 80px 0 60px 0;
|
||||
}
|
||||
|
||||
#network .service-item {
|
||||
margin-top: 80px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
#network .service-icon {
|
||||
float: left;
|
||||
background-color: #fff;
|
||||
padding: 16px;
|
||||
border-radius: 50%;
|
||||
transition: 0.5s;
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
#network .service-icon i {
|
||||
color: #000;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
#network .service-item:hover .service-icon {
|
||||
border: 1px solid #003777;
|
||||
outline: 0;
|
||||
color: white;
|
||||
background-color: #003777;
|
||||
}
|
||||
|
||||
#network .service-item:hover .service-icon i {
|
||||
color: white;
|
||||
}
|
||||
|
||||
#network .service-icon-no-link {
|
||||
float: left;
|
||||
background-color: #fff;
|
||||
padding: 16px;
|
||||
border-radius: 50%;
|
||||
transition: 0.5s;
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
#network .service-icon-no-link i {
|
||||
color: #000;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
#network .service-title {
|
||||
margin-left: 80px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 15px;
|
||||
text-transform: uppercase;
|
||||
color: white;
|
||||
}
|
||||
|
||||
#network .service-title a {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
#network .service-description {
|
||||
margin-left: 80px;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
#network .service-link {
|
||||
margin-left: 80px;
|
||||
}
|
||||
|
||||
#network .service-link a {
|
||||
margin-right: 10px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* status Section
|
||||
--------------------------------*/
|
||||
#status {
|
||||
background-color: #111;
|
||||
background-size: cover;
|
||||
padding: 40px 0;
|
||||
}
|
||||
|
||||
#status .status-title {
|
||||
color: #fff;
|
||||
font-size: 28px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
#status .status-text {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#status .status-btn-container {
|
||||
text-align: center;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
#status .status-btn {
|
||||
font-family: "Raleway", sans-serif;
|
||||
text-transform: uppercase;
|
||||
font-weight: 500;
|
||||
font-size: 16px;
|
||||
letter-spacing: 1px;
|
||||
display: inline-block;
|
||||
padding: 8px 20px;
|
||||
border-radius: 2px;
|
||||
transition: 0.5s;
|
||||
margin: 10px;
|
||||
border: 2px solid #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#status .status-btn:hover {
|
||||
background: #003777;
|
||||
border: 2px solid #003777;
|
||||
}
|
||||
|
||||
/* Portfolio Section
|
||||
--------------------------------*/
|
||||
#portfolio {
|
||||
background: #fff;
|
||||
padding: 80px 0;
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item {
|
||||
background-position: center center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
position: relative;
|
||||
height: 260px;
|
||||
width: 100%;
|
||||
display: table;
|
||||
overflow: hidden;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item .details {
|
||||
height: 260px;
|
||||
background: #fff;
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
opacity: 0;
|
||||
transition: 0.3s;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item .details h4 {
|
||||
font-size: 16px;
|
||||
transition: opacity 0.3s, -webkit-transform 0.3s;
|
||||
transition: transform 0.3s, opacity 0.3s;
|
||||
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
|
||||
-webkit-transform: translate3d(0, -15px, 0);
|
||||
transform: translate3d(0, -15px, 0);
|
||||
font-weight: 700;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item .details span {
|
||||
display: block;
|
||||
color: #666666;
|
||||
font-size: 13px;
|
||||
transition: opacity 0.3s, -webkit-transform 0.3s;
|
||||
transition: transform 0.3s, opacity 0.3s;
|
||||
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
|
||||
-webkit-transform: translate3d(0, 15px, 0);
|
||||
transform: translate3d(0, 15px, 0);
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item:hover .details {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item:hover .details h4 {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item:hover .details span {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
|
||||
/* Testimonials Section
|
||||
--------------------------------*/
|
||||
#testimonials {
|
||||
background: #f6f6f6;
|
||||
padding: 80px 0;
|
||||
}
|
||||
|
||||
#testimonials .profile {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#testimonials .profile .pic {
|
||||
border-radius: 50%;
|
||||
border: 6px solid #fff;
|
||||
margin-bottom: 15px;
|
||||
overflow: hidden;
|
||||
height: 260px;
|
||||
width: 260px;
|
||||
}
|
||||
|
||||
#testimonials .profile .pic img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
#testimonials .profile h4 {
|
||||
font-weight: 700;
|
||||
color: #1a82d8;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
#testimonials .profile span {
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
#testimonials .quote {
|
||||
position: relative;
|
||||
background: #fff;
|
||||
padding: 60px;
|
||||
margin-top: 40px;
|
||||
font-size: 16px;
|
||||
font-style: italic;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#testimonials .quote b {
|
||||
display: inline-block;
|
||||
font-size: 22px;
|
||||
left: -9px;
|
||||
position: relative;
|
||||
top: -8px;
|
||||
}
|
||||
|
||||
#testimonials .quote small {
|
||||
display: inline-block;
|
||||
right: -9px;
|
||||
position: relative;
|
||||
top: 4px;
|
||||
}
|
||||
|
||||
/* Team Section
|
||||
--------------------------------*/
|
||||
#team {
|
||||
background: #fff;
|
||||
padding: 80px 0 60px 0;
|
||||
}
|
||||
|
||||
#team .member {
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
#team .member .pic {
|
||||
margin-bottom: 15px;
|
||||
overflow: hidden;
|
||||
height: 260px;
|
||||
}
|
||||
|
||||
#team .member .pic img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
#team .member h4 {
|
||||
font-weight: 700;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
#team .member span {
|
||||
font-style: italic;
|
||||
display: block;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
#team .member .social {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
#team .member .social a {
|
||||
color: #b3b3b3;
|
||||
}
|
||||
|
||||
#team .member .social a:hover {
|
||||
color: #1a82d8;
|
||||
}
|
||||
|
||||
#team .member .social i {
|
||||
font-size: 18px;
|
||||
margin: 0 2px;
|
||||
}
|
||||
|
||||
/* Contact Section
|
||||
--------------------------------*/
|
||||
#contact {
|
||||
background: #111;
|
||||
padding: 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Footer
|
||||
--------------------------------------------------------------*/
|
||||
#footer {
|
||||
height: 8vh;
|
||||
background: black;
|
||||
padding: 30px 0;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#footer .copyright {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#footer .credits {
|
||||
padding-top: 10px;
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Primary button
|
||||
--------------------------------------------------------------*/
|
||||
.btn-default {
|
||||
border: 1px solid white;
|
||||
color: white;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.btn-default:hover,
|
||||
.btn-default:focus {
|
||||
border: 1px solid #003777;
|
||||
outline: 0;
|
||||
color: white;
|
||||
background-color: #003777;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Custom hexagon buttons
|
||||
--------------------------------------------------------------*/
|
||||
.hb-instagram, .hb-instagram:after, .hb-instagram:before {
|
||||
background:#cd486b;
|
||||
border-color:#cd486b;
|
||||
color:#fff
|
||||
}
|
||||
|
||||
.hb-instagram-inv, .hb-instagram-inv:after, .hb-instagram-inv:before, .hb-instagram:hover, .hb-instagram:hover:after, .hb-instagram:hover:before {
|
||||
background:0 0;
|
||||
border-color:#cd486b;
|
||||
color:#cd486b;
|
||||
}
|
||||
|
||||
.hb-instagram-inv:hover, .hb-instagram-inv:hover:after, .hb-instagram-inv:hover:before {
|
||||
background:#cd486b;
|
||||
border-color:#cd486b;
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
.hb-email, .hb-email:after, .hb-email:before {
|
||||
background:#A93125;
|
||||
border-color:#A93125;
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
.hb-email-inv, .hb-email-inv:after, .hb-email-inv:before, .hb-email:hover, .hb-email:hover:after, .hb-email:hover:before {
|
||||
background:0 0;
|
||||
border-color:#A93125;
|
||||
color:#A93125;
|
||||
}
|
||||
|
||||
.hb-email-inv:hover, .hb-email-inv:hover:after, .hb-email-inv:hover:before {
|
||||
background:#A93125;
|
||||
border-color:#A93125;
|
||||
color:#fff
|
||||
}
|
||||
|
||||
.hb-resume, .hb-resume:after, .hb-resume:before {
|
||||
background:#003777;
|
||||
border-color:#003777;
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
.hb-resume-inv, .hb-resume-inv:after, .hb-resume-inv:before, .hb-resume:hover, .hb-resume:hover:after, .hb-resume:hover:before {
|
||||
background:0 0;
|
||||
border-color:#003777;
|
||||
color:#003777;
|
||||
}
|
||||
|
||||
.hb-resume-inv:hover, .hb-resume-inv:hover:after, .hb-resume-inv:hover:before {
|
||||
background:#003777;
|
||||
border-color:#003777;
|
||||
color:#fff;
|
||||
}
|
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 190 KiB |
@ -17,7 +17,7 @@
|
||||
<meta property='og:site_name' content="E.N.Paul"/>
|
||||
<meta property="og:type" content="website"/>
|
||||
<meta property='og:locale' content="en_US"/>
|
||||
<meta property="og:image" content="https://enpaul.net/img/banners/about.jpg"/>
|
||||
<meta property="og:image" content="https://static.foundatio.nl/banners/site-en-about.jpg"/>
|
||||
<meta property='og:description' content="Introduction to my interests, skills, and activities"/>
|
||||
|
||||
<!-- Twitter integration meta -->
|
||||
@ -25,15 +25,15 @@
|
||||
<meta name="twitter:site" content="@theenpaul">
|
||||
<meta name="twitter:title" content="E.N.Paul | About">
|
||||
<meta name="twitter:description" content="Introduction to my interests, skills, and activities">
|
||||
<meta name="twitter:image" content="https://enpaul.net/img/banners/about.jpg">
|
||||
<meta name="twitter:image" content="https://static.foundatio.nl/banners/site-en-about.jpg">
|
||||
<meta name="twitter:image:alt" content="E.N.Paul">
|
||||
|
||||
<!-- Page title and favicon definition -->
|
||||
<title>E.N.Paul | About</title>
|
||||
<link rel="shortcut icon" href="../img/e-b.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../img/e-b.png">
|
||||
<link rel="icon" type="image/png" href="../img/e-b.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="../img/e-b.png" sizes="16x16">
|
||||
<link rel="shortcut icon" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="https://static.foundatio.nl/logos/e-b-sm.png">
|
||||
<link rel="icon" type="image/png" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png" sizes="16x16">
|
||||
|
||||
<!-- CSS references -->
|
||||
<link href="../css/bootstrap.min.css" rel="stylesheet">
|
||||
@ -63,7 +63,7 @@
|
||||
<div class="container">
|
||||
|
||||
<div id="logo" class="pull-left">
|
||||
<a href="/"><img src="../img/e-w.png" alt="E.N.Paul" title="" /></img></a>
|
||||
<a href="/"><img src="https://static.foundatio.nl/logos/enpaul/e-w-sm.png" alt="E.N.Paul" title="" /></img></a>
|
||||
</div>
|
||||
|
||||
<nav id="nav-menu-container">
|
||||
@ -91,20 +91,20 @@
|
||||
<div class="container about-container">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<img class="about-portrait" src="../img/e-w.png" alt="Ethan N. Paul"/>
|
||||
<img class="about-portrait" src="https://static.foundatio.nl/logos/enpaul/e-w-sm.png" alt="Ethan N. Paul"/>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<h2 class="about-title">Who I Am</h2>
|
||||
<p class="about-text">
|
||||
My name is Ethan Paul, and I am an engineering student at <a target="_blank" href="https://www.wpi.edu/">Worcester Polytechnic Institute</a> studying <a href="https://www.wpi.edu/academics/departments/mechanical-engineering">Mechanical Engineering</a>. I am an avid outdoorsman, a former Boy Scout, and can make a mean omelet (if I do say so myself). I'm also a <a target="_blank" href="http://www.diabetes.org/diabetes-basics/type-1/">Type 1 Diabetic</a> working on joining the <a target="_blank" href="https://diyps.org/">DIY Pancreas</a> and <a target="_blank" href="http://www.openomni.org/">OpenOmni</a> projects.
|
||||
My name is Ethan Paul, and I am an engineer working in tech! I graduated as a part of <a target="_blank" href="https://www.wpi.edu/">Worcester Polytechnic Institute</a>'s Class of 2017 with a degree in <a href="https://www.wpi.edu/academics/departments/mechanical-engineering">Mechanical Engineering</a>. I am an avid outdoorsman, a former Boy Scout, and can make a mean omelet (if I do say so myself). I'm also a <a target="_blank" href="http://www.diabetes.org/diabetes-basics/type-1/">Type 1 Diabetic</a> working on joining the <a target="_blank" href="https://diyps.org/">DIY Pancreas</a> and <a target="_blank" href="http://www.openomni.org/">OpenOmni</a> projects.
|
||||
</p>
|
||||
<h2 class="about-title">What I Do</h2>
|
||||
<p class="about-text">
|
||||
I do lots of things! I work at <a target="_blank" href="https://web.wpi.edu/academics/CCC/Netops/">WPI Network Operations</a> and spent three years as an intern for the <a href="http://www.solidworks.com/">SolidWorks Corporation</a>. I also enjoy programming, urban and trail hiking, fixing my aging car, and squeezing extra life out of decrepit technology.
|
||||
I do lots of things! I work at <a target="_blank" href="https://starry.com">Starry Inc</a> and spent three years as an intern for the <a href="http://www.solidworks.com/">SolidWorks Corporation</a>. I also enjoy programming, urban and trail hiking, fixing my aging car, and squeezing extra life out of decrepit technology.
|
||||
</p>
|
||||
<h2 class="about-title">My Interests</h2>
|
||||
<p class="about-text">
|
||||
My interests are pretty varied and constantly changing, but most often you can find me programming in <a target="_blank" href="https://www.python.org">Python</a>, learning about practical repairs to internal combustion engines, or answering hypothetical questions on <a target="_blank" href="https://worldbuilding.stackexchange.com">StackExchange World Building</a>. I enjoy reading! Some of my favorite books are Isaac Asimov's <a target="_blank" href="https://www.goodreads.com/book/show/46654.The_Foundation_Trilogy">Foundation Trilogy</a>, Patrick Ness' <a target="_blank" href="https://www.goodreads.com/book/show/13047567-chaos-walking">Chaos Walking Series</a>, and nearly all of <a target="_blank" href="https://www.goodreads.com/author/list/5194.Michael_Crichton">Michael Crichton's</a> works.
|
||||
My interests are pretty varied and constantly changing, but most often you can find me programming in <a target="_blank" href="https://www.python.org">Python</a>, learning about practical repairs to internal combustion engines, or answering hypothetical questions on <a target="_blank" href="https://worldbuilding.stackexchange.com">StackExchange World Building</a>. I also enjoy reading! Some of my favorite books are Isaac Asimov's <a target="_blank" href="https://www.goodreads.com/book/show/46654.The_Foundation_Trilogy">Foundation Trilogy</a>, Patrick Ness' <a target="_blank" href="https://www.goodreads.com/book/show/13047567-chaos-walking">Chaos Walking Series</a>, F.Scott Fitzgerald's <a target="_blank" href="https://www.goodreads.com/book/show/4671.The_Great_Gatsby">The Great Gatsby</a>, and nearly all of <a target="_blank" href="https://www.goodreads.com/author/list/5194.Michael_Crichton">Michael Crichton's</a> works.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@ -119,12 +119,12 @@
|
||||
<div class="section-title-divider"></div>
|
||||
<p class="section-description">Send me an email at <a href="mailto:enpaul@enpaul.net">enpaul@enpaul.net</a> or feel free to reach out!</p>
|
||||
<ul class="list-inline">
|
||||
<li><a target="_blank" href="https://download.enpaul.net/enpaul-resume.pdf"><span class="hb hb-sm hb-resume" title="Download Resume"><i class="fa fa-file-text"></i></span></a></li>
|
||||
<li><a href="mailto:enpaul@enpaul.net"><span class="hb hb-sm hb-email" title="EMail enpaul@enpaul.net"><i class="fa fa-envelope"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://dl.foundatio.nl/resources/enpaul-resume.pdf"><span class="hb hb-sm hb-resume" title="Download Resume"><i class="fa fa-file-text"></i></span></a></li>
|
||||
<li><a href="mailto:enpaul@enpaul.net"><span class="hb hb-sm hb-email" title="Email enpaul@enpaul.net"><i class="fa fa-envelope"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://www.linkedin.com/in/enpaul"><span class="hb hb-sm hb-linkedin" title="LinkedIn E.N.Paul"><i class="fa fa-linkedin"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://plus.google.com/+EthanPaul42"><span class="hb hb-sm hb-google-plus" title="Google+ EthanPaul42"><i class="fa fa-google-plus"></i></span></a></li>
|
||||
<!--<li><a target="_blank" href="https://twitter.com/theenpaul"><span class="hb hb-sm hb-twitter" title="Twitter @theE.N.Paul"><i class="fa fa-twitter"></i></span></a></li>-->
|
||||
<li><a target="_blank" href="https://www.instagram.com/theenpaul"><span class="hb hb-sm hb-instagram" title="Instagram @theE.N.Paul"><i class="fa fa-instagram"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://twitter.com/theenpaul/"><span class="hb hb-sm hb-twitter" title="Twitter @theENPaul"><i class="fa fa-twitter"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://www.instagram.com/allaroundhere/"><span class="hb hb-sm hb-instagram" title="Instagram @allAroundHere"><i class="fa fa-instagram"></i></span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
@ -139,9 +139,9 @@
|
||||
©2018 <strong>Ethan N. Paul</strong>
|
||||
<noscript><a href="/js/warn/" title="Client Javascript Disabled" style="color: orange;"><i class="fa fa-lg fa-exclamation-circle"></i></a></noscript>
|
||||
</div>
|
||||
<div class="copyright">
|
||||
<!-- <div class="copyright">
|
||||
<a href="https://gitlab.enpaul.net/enpaul/ENPaulNetHome/"><img alt="pipeline status" src="https://gitlab.enpaul.net/enpaul/ENPaulNetHome/badges/master/pipeline.svg" /></a>
|
||||
</div>
|
||||
</div>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -86,7 +86,7 @@ h1, h2, h3, h4, h5, h6 {
|
||||
display: table;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
background: url(../img/network.jpg) top center fixed;
|
||||
background: url(https://static.foundatio.nl/backgrounds/cl-network.jpg) top center fixed;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
@ -495,7 +495,7 @@ body.mobile-nav-active #mobile-nav-toggle {
|
||||
/* Get Started Section
|
||||
--------------------------------*/
|
||||
#about {
|
||||
background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url("../img/watch.jpg") fixed center center;
|
||||
background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("https://static.foundatio.nl/backgrounds/bw-watch.jpg") fixed center center;
|
||||
padding: 80px 0;
|
||||
}
|
||||
|
||||
@ -522,7 +522,7 @@ body.mobile-nav-active #mobile-nav-toggle {
|
||||
/* Network Section
|
||||
--------------------------------*/
|
||||
#network {
|
||||
background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url("../img/datacenter.jpg") fixed center center;
|
||||
background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("https://static.foundatio.nl/backgrounds/bw-datacenter.jpg") fixed center center;
|
||||
background-size: cover;
|
||||
padding: 80px 0 60px 0;
|
||||
}
|
||||
@ -643,7 +643,7 @@ body.mobile-nav-active #mobile-nav-toggle {
|
||||
/* Portfolio Section
|
||||
--------------------------------*/
|
||||
#project {
|
||||
background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url("../img/engine.jpg") fixed center center;;
|
||||
background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("https://static.foundatio.nl/backgrounds/bw-engine.jpg") fixed center center;;
|
||||
padding: 80px 0;
|
||||
}
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
<meta property='og:site_name' content="E.N.Paul"/>
|
||||
<meta property="og:type" content="website"/>
|
||||
<meta property='og:locale' content="en_US"/>
|
||||
<meta property="og:image" content="https://enpaul.net/img/banners/homelab.jpg"/>
|
||||
<meta property="og:image" content="https://static.foundatio.nl/banners/site-en-homelab.jpg"/>
|
||||
<meta property='og:description' content="Overview of the ENPN Homelab and network applications"/>
|
||||
|
||||
<!-- Twitter integration meta -->
|
||||
@ -25,15 +25,15 @@
|
||||
<meta name="twitter:site" content="@theenpaul">
|
||||
<meta name="twitter:title" content="E.N.Paul | Homelab">
|
||||
<meta name="twitter:description" content="Overview of the ENPN Homelab and network applications">
|
||||
<meta name="twitter:image" content="https://enpaul.net/img/banners/homelab.jpg">
|
||||
<meta name="twitter:image" content="https://static.foundatio.nl/banners/site-en-homelab.jpg">
|
||||
<meta name="twitter:image:alt" content="E.N.Paul">
|
||||
|
||||
<!-- Page title and favicon definition -->
|
||||
<title>E.N.Paul | Homelab</title>
|
||||
<link rel="shortcut icon" href="../img/e-b.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../img/e-b.png">
|
||||
<link rel="icon" type="image/png" href="../img/e-b.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="../img/e-b.png" sizes="16x16">
|
||||
<link rel="shortcut icon" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
<link rel="icon" type="image/png" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png" sizes="16x16">
|
||||
|
||||
<!-- CSS references -->
|
||||
<link href="../css/bootstrap.min.css" rel="stylesheet">
|
||||
@ -63,7 +63,7 @@
|
||||
<div class="container">
|
||||
|
||||
<div id="logo" class="pull-left">
|
||||
<a href="/"><img src="../img/e-w.png" alt="E.N.Paul" title="" /></img></a>
|
||||
<a href="/"><img src="https://static.foundatio.nl/logos/enpaul/e-w-sm.png" alt="E.N.Paul" title="" /></img></a>
|
||||
</div>
|
||||
|
||||
<nav id="nav-menu-container">
|
||||
@ -84,61 +84,61 @@
|
||||
<div class="col-md-12">
|
||||
<h3 class="section-title">Homelab</h3>
|
||||
<div class="section-title-divider"></div>
|
||||
<p class="section-description">I use my homelab to provide a number of services for personal entertainment, reference, security, and productivity.<br>To learn more about the lab as a whole, please <a href="https://docs.enpaul.net/" target="_blank">read the docs</a>.</p>
|
||||
<p class="section-description">I use my homelab to provide a number of services for personal entertainment, reference, security, and productivity.<br>To learn more about the lab as a whole, please <a href="https://docs.foundatio.nl/" target="_blank">read the docs</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4 service-item">
|
||||
<div class="service-icon-no-link"><i class="fa fa-sitemap"></i></div>
|
||||
<div class="service-icon-no-link"><i class="fa fa-windows"></i></div>
|
||||
<h4 class="service-title">Active Directory</h4>
|
||||
<p class="service-description"><a href="https://docs.microsoft.com/en-us/windows-server/identity/ad-ds/get-started/virtual-dc/active-directory-domain-services-overview" target="_blank">Active Directory Domain Services (ADDS)</a> provides federated user authentication, administration, and security for my computers.</p>
|
||||
<div class="service-link">
|
||||
<a class="btn btn-default" href="https://docs.enpaul.net/adds/"><i class="fa fa-book"></i> Docs</a>
|
||||
<a class="btn btn-default" href="https://docs.foundatio.nl/adds/"><i class="fa fa-book"></i> Docs</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 service-item">
|
||||
<div class="service-icon-no-link"><i class="fa fa-key"></i></div>
|
||||
<div class="service-icon-no-link"><i class="fa fa-user"></i></div>
|
||||
<h4 class="service-title">VPN</h4>
|
||||
<p class="service-description">The Virtual Private Networking (VPN) server, powered by <a href="http://www.softether.org/" target="_blank">Softether</a>, allows me to secure my network traffic from anywhere in the world.</p>
|
||||
<p class="service-description">Virtual Private Networking (VPN) allows me to secure my network traffic from anywhere in the world.<br>Powered by <a href="https://www.softether.org/" target="_blank">Softether</a>.</p>
|
||||
<div class="service-link">
|
||||
<a class=" btn btn-default" href="https://docs.enpaul.net/app/vpn/"><i class="fa fa-book"></i> Docs</a>
|
||||
<a class=" btn btn-default" href="https://docs.enpaul.net/app/vpn/connect/"><i class="fa fa-book"></i> Connect</a>
|
||||
<a class=" btn btn-default" href="https://docs.foundatio.nl/app/vpn/"><i class="fa fa-book"></i> Docs</a>
|
||||
<a class=" btn btn-default" href="https://docs.foundatio.nl/app/vpn/connect/"><i class="fa fa-external-link"></i> Connect</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 service-item">
|
||||
<a href="https://storage.enpaul.net/"><div class="service-icon"><i class="fa fa-cloud"></i></div></a>
|
||||
<a href="https://storage.foundatio.nl/"><div class="service-icon"><i class="fa fa-cloud"></i></div></a>
|
||||
<h4 class="service-title">Cloud Storage</h4>
|
||||
<p class="service-description">Local cloud storage allows for secure storage of my data. Online access is provided by the <a href="https://github.com/misterunknown/ifm" target="_blank">Improved File Manager</a> and <a href="http://adamwhitcroft.com/apaxy/" target="_blank">Apaxy</a>.</p>
|
||||
<p class="service-description">Personal cloud storage allows for secure storage of my data without pesky datcaps.<br>Powered by <a href="https://nextcloud.com/" target="_blank">NextCloud</a>.</p>
|
||||
<div class="service-link">
|
||||
<a class=" btn btn-default" href="https://docs.enpaul.net/app/storage/"><i class="fa fa-book"></i> Docs</a>
|
||||
<a class=" btn btn-default" href="https://storage.enpaul.net/"><i class="fa fa-chevron-right"></i> Storage</a>
|
||||
<a class=" btn btn-default" href="https://docs.foundatio.nl/app/storage/"><i class="fa fa-book"></i> Docs</a>
|
||||
<a class=" btn btn-default" href="https://storage.foundatio.nl/"><i class="fa fa-external-link"></i> Storage</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 service-item">
|
||||
<a href="https://gitlab.enpaul.net/"><div class="service-icon"><i class="fa fa-gitlab"></i></div></a>
|
||||
<h4 class="service-title">GitLab</h4>
|
||||
<p class="service-description"><a href="https://about.gitlab.com/" target="_blank">GitLab</a> is a <a href="https://git-scm.com/book/en/v2/Getting-Started-About-Version-Control" target="_blank">git-based source control</a> service for collaborative project development and deployment.</p>
|
||||
<a href="https://vcs.foundatio.nl/"><div class="service-icon"><i class="fa fa-git"></i></div></a>
|
||||
<h4 class="service-title">Version Control</h4>
|
||||
<p class="service-description">A personal <a href="https://git-scm.com/book/en/v2/Getting-Started-About-Version-Control" target="_blank">version control system (VCS)</a> gives me complete control of my writing and programming projects.<br>Powered by <a href="https://gitea.io/en-us/" target="_blank">Gitea</a>.</p>
|
||||
<div class="service-link">
|
||||
<a class=" btn btn-default" href="https://docs.enpaul.net/app/gitlab/"><i class="fa fa-book"></i> Docs</a>
|
||||
<a class=" btn btn-default" href="https://gitlab.enpaul.net/"><i class="fa fa-chevron-right"></i> GitLab</a>
|
||||
<a class=" btn btn-default" href="https://docs.foundatio.nl/app/vcs/"><i class="fa fa-book"></i> Docs</a>
|
||||
<a class=" btn btn-default" href="https://vcs.foundatio.nl/"><i class="fa fa-external-link"></i> VCS</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 service-item">
|
||||
<a href="https://docs.enpaul.net/"><div class="service-icon"><i class="fa fa-book"></i></div></a>
|
||||
<a href="https://docs.foundatio.nl/"><div class="service-icon"><i class="fa fa-book"></i></div></a>
|
||||
<h4 class="service-title">Documentation</h4>
|
||||
<p class="service-description">Any system is only as good as its documentation. My docs, powered by <a href="http://www.mkdocs.org/" target="_blank">MkDocs</a>, are constantly being updated.</p>
|
||||
<p class="service-description">"No documentation is better than wrong documentation", but accurate documentation is the best option.<br>Powered by <a href="http://www.mkdocs.org/" target="_blank">MkDocs</a>.</p>
|
||||
<div class="service-link">
|
||||
<a class=" btn btn-default" href="https://docs.enpaul.net/app/docs-meta/"><i class="fa fa-book"></i> Docs (Meta)</a>
|
||||
<a class=" btn btn-default" href="https://docs.foundatio.nl/app/docs/"><i class="fa fa-book"></i> Docs (Meta)</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 service-item">
|
||||
<a href="https://plex.enpaul.net/"><div class="service-icon"><i class="fa fa-film"></i></div></a>
|
||||
<a href="https://plex.foundatio.nl/"><div class="service-icon"><i class="fa fa-film"></i></div></a>
|
||||
<h4 class="service-title">Plex Media Server</h4>
|
||||
<p class="service-description"><a href="https://www.plex.tv/" target="_blank">Plex</a> is a media management solution for sharing my movie, TV, music, and photo collections with friends.</p>
|
||||
<p class="service-description"><a href="https://www.plex.tv/" target="_blank">Plex</a> is a media management platform for sharing my movie, TV, and music collections with friends.</p>
|
||||
<div class="service-link">
|
||||
<a class=" btn btn-default" href="https://docs.enpaul.net/app/plex/"><i class="fa fa-book"></i> Docs</a>
|
||||
<a class=" btn btn-default" href="https://plex.enpaul.net/"><i class="fa fa-chevron-right"></i> Plex</a>
|
||||
<a class=" btn btn-default" href="https://docs.foundatio.nl/app/plex/"><i class="fa fa-book"></i> Docs</a>
|
||||
<a class=" btn btn-default" href="https://plex.foundatio.nl/"><i class="fa fa-external-link"></i> Plex</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -165,12 +165,12 @@
|
||||
<div class="col-md-12">
|
||||
<div class="copyright">
|
||||
<ul class="list-inline">
|
||||
<li><a target="_blank" href="https://download.enpaul.net/enpaul-resume.pdf"><span class="hb hb-xs hb-resume" title="Download Resume"><i class="fa fa-file-text"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://dl.foundatio.nl/resources/enpaul-resume.pdf"><span class="hb hb-xs hb-resume" title="Download Resume"><i class="fa fa-file-text"></i></span></a></li>
|
||||
<li><a href="mailto:enpaul@enpaul.net"><span class="hb hb-xs hb-email" title="EMail enpaul@enpaul.net"><i class="fa fa-envelope"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://www.linkedin.com/in/enpaul"><span class="hb hb-xs hb-linkedin" title="LinkedIn E.N.Paul"><i class="fa fa-linkedin"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://plus.google.com/+EthanPaul42"><span class="hb hb-xs hb-google-plus" title="Google+ EthanPaul42"><i class="fa fa-google-plus"></i></span></a></li>
|
||||
<!--<li><a target="_blank" href="https://twitter.com/theenpaul"><span class="hb hb-xs hb-twitter" title="Twitter @theE.N.Paul"><i class="fa fa-twitter"></i></span></a></li>-->
|
||||
<li><a target="_blank" href="https://www.instagram.com/theenpaul"><span class="hb hb-xs hb-instagram" title="Instagram @theE.N.Paul"><i class="fa fa-instagram"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://twitter.com/theenpaul/"><span class="hb hb-xs hb-twitter" title="Twitter @theENPaul"><i class="fa fa-twitter"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://www.instagram.com/allaroundhere/"><span class="hb hb-xs hb-instagram" title="Instagram @allAroundHere"><i class="fa fa-instagram"></i></span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="copyright">
|
||||
|
Before Width: | Height: | Size: 297 KiB |
Before Width: | Height: | Size: 378 KiB |
Before Width: | Height: | Size: 196 KiB |
Before Width: | Height: | Size: 334 KiB |
Before Width: | Height: | Size: 766 KiB |
BIN
img/e-b.png
Before Width: | Height: | Size: 2.2 KiB |
BIN
img/e-w.png
Before Width: | Height: | Size: 4.2 KiB |
BIN
img/engine.jpg
Before Width: | Height: | Size: 585 KiB |
BIN
img/network.jpg
Before Width: | Height: | Size: 190 KiB |
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
Before Width: | Height: | Size: 124 KiB After Width: | Height: | Size: 124 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 88 KiB |
Before Width: | Height: | Size: 6.9 MiB After Width: | Height: | Size: 6.9 MiB |
Before Width: | Height: | Size: 219 KiB After Width: | Height: | Size: 219 KiB |
Before Width: | Height: | Size: 419 KiB After Width: | Height: | Size: 419 KiB |
Before Width: | Height: | Size: 463 KiB After Width: | Height: | Size: 463 KiB |
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
BIN
img/tile.jpg
Before Width: | Height: | Size: 162 KiB |
BIN
img/watch.jpg
Before Width: | Height: | Size: 503 KiB |
24
index.html
@ -17,7 +17,7 @@
|
||||
<meta property='og:site_name' content="E.N.Paul"/>
|
||||
<meta property="og:type" content="website"/>
|
||||
<meta property='og:locale' content="en_US"/>
|
||||
<meta property="og:image" content="https://enpaul.net/img/banners/main.jpg"/>
|
||||
<meta property="og:image" content="https://static.foundatio.nl/banners/site-en-main.jpg"/>
|
||||
<meta property='og:description' content="My personal landing page"/>
|
||||
|
||||
<!-- Twitter integration meta -->
|
||||
@ -25,15 +25,15 @@
|
||||
<meta name="twitter:site" content="@theenpaul">
|
||||
<meta name="twitter:title" content="Ethan N. Paul">
|
||||
<meta name="twitter:description" content="My personal landing page">
|
||||
<meta name="twitter:image" content="https://enpaul.net/img/banners/main.jpg">
|
||||
<meta name="twitter:image" content="https://static.foundatio.nl/banners/site-en-main.jpg">
|
||||
<meta name="twitter:image:alt" content="E.N.Paul">
|
||||
|
||||
<!-- Page title and favicon definition -->
|
||||
<title>E.N.Paul</title>
|
||||
<link rel="shortcut icon" href="img/e-b.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="img/e-b.png">
|
||||
<link rel="icon" type="image/png" href="img/e-b.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="img/e-b.png" sizes="16x16">
|
||||
<link rel="shortcut icon" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
<link rel="icon" type="image/png" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png" sizes="16x16">
|
||||
|
||||
<!-- CSS references -->
|
||||
<link href="css/bootstrap.min.css" rel="stylesheet">
|
||||
@ -63,7 +63,7 @@
|
||||
<div class="top-container">
|
||||
<div class="wow fadeIn">
|
||||
<div class="top-logo">
|
||||
<img class="" src="img/e-w.png" alt="E.N.Paul">
|
||||
<img class="" src="https://static.foundatio.nl/logos/enpaul/e-w-sm.png" alt="E.N.Paul">
|
||||
</div>
|
||||
|
||||
<h1>E. N. Paul</h1>
|
||||
@ -77,12 +77,12 @@
|
||||
|
||||
<div id="contact-menu">
|
||||
<ul class="list-inline">
|
||||
<li><a target="_blank" href="https://download.enpaul.net/enpaul-resume.pdf"><span class="hb hb-xs hb-resume" title="Download Resume"><i class="fa fa-file-text"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://dl.foundatio.nl/resources/enpaul-resume.pdf"><span class="hb hb-xs hb-resume" title="Download Resume"><i class="fa fa-file-text"></i></span></a></li>
|
||||
<li><a href="mailto:enpaul@enpaul.net"><span class="hb hb-xs hb-email" title="Email enpaul@enpaul.net"><i class="fa fa-envelope"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://www.linkedin.com/in/enpaul"><span class="hb hb-xs hb-linkedin" title="LinkedIn E.N.Paul"><i class="fa fa-linkedin"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://plus.google.com/+EthanPaul42"><span class="hb hb-xs hb-google-plus" title="Google+ EthanPaul42"><i class="fa fa-google-plus"></i></span></a></li>
|
||||
<!--<li><a target="_blank" href="https://twitter.com/theenpaul"><span class="hb hb-xs hb-twitter" title="Twitter @theE.N.Paul"><i class="fa fa-twitter"></i></span></a></li>-->
|
||||
<li><a target="_blank" href="https://www.instagram.com/theenpaul"><span class="hb hb-xs hb-instagram" title="Instagram @theE.N.Paul"><i class="fa fa-instagram"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://twitter.com/theenpaul"><span class="hb hb-xs hb-twitter" title="Twitter @theENPaul"><i class="fa fa-twitter"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://www.instagram.com/allaroundhere/"><span class="hb hb-xs hb-instagram" title="Instagram @allAroundHere"><i class="fa fa-instagram"></i></span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@ -102,9 +102,9 @@
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="copyright">
|
||||
<a href="https://gitlab.enpaul.net/enpaul/ENPaulNetHome/" target="_blank">
|
||||
<!-- <a href="https://gitlab.enpaul.net/enpaul/ENPaulNetHome/" target="_blank">
|
||||
<img alt="pipeline status" src="https://gitlab.enpaul.net/enpaul/ENPaulNetHome/badges/master/pipeline.svg" />
|
||||
</a>
|
||||
</a>-->
|
||||
©2018 <strong>Ethan N. Paul</strong>
|
||||
<noscript><a href="/js/warn/" title="Client Javascript Disabled" style="color: orange;"><i class="fa fa-lg fa-exclamation-circle"></i></a></noscript>
|
||||
</div>
|
||||
|
@ -17,7 +17,7 @@
|
||||
<meta property='og:site_name' content="E.N.Paul"/>
|
||||
<meta property="og:type" content="website"/>
|
||||
<meta property='og:locale' content="en_US"/>
|
||||
<meta property="og:image" content="https://enpaul.net/img/banners/projects.jpg"/>
|
||||
<meta property="og:image" content="https://static.foundatio.nl/banners/site-en-projects.jpg"/>
|
||||
<meta property='og:description' content="Introduction to my personal projects and achievements"/>
|
||||
|
||||
<!-- Twitter integration meta -->
|
||||
@ -25,15 +25,15 @@
|
||||
<meta name="twitter:site" content="@theenpaul">
|
||||
<meta name="twitter:title" content="E.N.Paul | Projects">
|
||||
<meta name="twitter:description" content="Introduction to my personal projects and achievements">
|
||||
<meta name="twitter:image" content="https://enpaul.net/img/banners/projects.jpg">
|
||||
<meta name="twitter:image" content="https://static.foundatio.nl/banners/site-en-projects.jpg">
|
||||
<meta name="twitter:image:alt" content="E.N.Paul">
|
||||
|
||||
<!-- Page title and favicon definition -->
|
||||
<title>E.N.Paul | Projects</title>
|
||||
<link rel="shortcut icon" href="../img/e-b.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="../img/e-b.png">
|
||||
<link rel="icon" type="image/png" href="../img/e-b.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="../img/e-b.png" sizes="16x16">
|
||||
<link rel="shortcut icon" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="https://static.foundatio.nl/logos/enpaul/e-b-sm.png">
|
||||
|
||||
<!-- CSS references -->
|
||||
<link href="../css/bootstrap.min.css" rel="stylesheet">
|
||||
@ -63,7 +63,7 @@
|
||||
<div class="container">
|
||||
|
||||
<div id="logo" class="pull-left">
|
||||
<a href="/"><img src="../img/e-w.png" alt="E.N.Paul" title="" /></img></a>
|
||||
<a href="/"><img src="https://static.foundatio.nl/logos/enpaul/e-w-sm.png" alt="E.N.Paul" title="" /></img></a>
|
||||
</div>
|
||||
|
||||
<nav id="nav-menu-container">
|
||||
@ -90,7 +90,7 @@
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<a class="project-item" style="background-image: url(../img/projects/travel.jpg);" href="#">
|
||||
<a class="project-item" style="background-image: url(../img/project-card-travel.jpg);" href="#">
|
||||
<div class="details">
|
||||
<h4>Travel</h4>
|
||||
<span>"The great affair is to move"<br><i>-Robert Louis Stevenson</i></span>
|
||||
@ -99,7 +99,7 @@
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<a class="project-item" style="background-image: url(../img/projects/car.jpg);" href="#">
|
||||
<a class="project-item" style="background-image: url(../img/project-card-car.jpg);" href="#">
|
||||
<div class="details">
|
||||
<h4>Vehicle Maintenence</h4>
|
||||
<span>206,000 miles and counting!</span>
|
||||
@ -108,7 +108,7 @@
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<a class="project-item" style="background-image: url(../img/projects/acad.jpg);" href="#">
|
||||
<a class="project-item" style="background-image: url(../img/project-card-acad.jpg);" href="#">
|
||||
<div class="details">
|
||||
<h4>Campus Structure Docs</h4>
|
||||
<span>AutoCAD, legacy data, organization <br>of field data</span>
|
||||
@ -117,7 +117,7 @@
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<a class="project-item" style="background-image: url(../img/projects/server.jpg);" href="#">
|
||||
<a class="project-item" style="background-image: url(../img/project-card-server.jpg);" href="#">
|
||||
<div class="details">
|
||||
<h4>Homelab</h4>
|
||||
<span>My data, my hardware</span>
|
||||
@ -126,7 +126,7 @@
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<a class="project-item" style="background-image: url(../img/projects/mqp.jpg);" href="#">
|
||||
<a class="project-item" style="background-image: url(../img/project-card-mqp.jpg);" href="#">
|
||||
<div class="details">
|
||||
<h4>Major Qualifying Project</h4>
|
||||
<span>A passive knee brace for assisting <br>with Sit-To-Stand Transitions</span>
|
||||
@ -135,7 +135,7 @@
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<a class="project-item" style="background-image: url(../img/projects/sldwrks.jpg);" href="#">
|
||||
<a class="project-item" style="background-image: url(../img/project-card-solidworks.jpg);" href="#">
|
||||
<div class="details">
|
||||
<h4>3D Models</h4>
|
||||
<span>SolidWorks is to 3D-Printing what<br> cake is to dessert</span>
|
||||
@ -167,12 +167,12 @@
|
||||
<div class="col-md-12">
|
||||
<div class="copyright">
|
||||
<ul class="list-inline">
|
||||
<li><a target="_blank" href="https://download.enpaul.net/enpaul-resume.pdf"><span class="hb hb-xs hb-resume" title="Download Resume"><i class="fa fa-file-text"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://dl.foundatio.nl/resources/enpaul-resume.pdf"><span class="hb hb-xs hb-resume" title="Download Resume"><i class="fa fa-file-text"></i></span></a></li>
|
||||
<li><a href="mailto:enpaul@enpaul.net"><span class="hb hb-xs hb-email" title="EMail enpaul@enpaul.net"><i class="fa fa-envelope"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://www.linkedin.com/in/enpaul"><span class="hb hb-xs hb-linkedin" title="LinkedIn E.N.Paul"><i class="fa fa-linkedin"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://plus.google.com/+EthanPaul42"><span class="hb hb-xs hb-google-plus" title="Google+ EthanPaul42"><i class="fa fa-google-plus"></i></span></a></li>
|
||||
<!--<li><a target="_blank" href="https://twitter.com/theenpaul"><span class="hb hb-xs hb-twitter" title="Twitter @theE.N.Paul"><i class="fa fa-twitter"></i></span></a></li>-->
|
||||
<li><a target="_blank" href="https://www.instagram.com/theenpaul"><span class="hb hb-xs hb-instagram" title="Instagram @theE.N.Paul"><i class="fa fa-instagram"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://twitter.com/theenpaul/"><span class="hb hb-xs hb-twitter" title="Twitter @theENPaul"><i class="fa fa-twitter"></i></span></a></li>
|
||||
<li><a target="_blank" href="https://www.instagram.com/allaroundhere/"><span class="hb hb-xs hb-instagram" title="Instagram @allAroundHere"><i class="fa fa-instagram"></i></span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="copyright">
|
||||
|
36
web.config
@ -1,36 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<configuration>
|
||||
<system.webServer>
|
||||
<defaultDocument>
|
||||
<files>
|
||||
<clear />
|
||||
<add value="index.html" />
|
||||
<add value="Default.htm" />
|
||||
<add value="Default.asp" />
|
||||
<add value="index.htm" />
|
||||
<add value="iisstart.htm" />
|
||||
<add value="default.aspx" />
|
||||
</files>
|
||||
</defaultDocument>
|
||||
<httpErrors>
|
||||
<remove statusCode="502" subStatusCode="-1" />
|
||||
<remove statusCode="501" subStatusCode="-1" />
|
||||
<remove statusCode="500" subStatusCode="-1" />
|
||||
<remove statusCode="412" subStatusCode="-1" />
|
||||
<remove statusCode="406" subStatusCode="-1" />
|
||||
<remove statusCode="405" subStatusCode="-1" />
|
||||
<remove statusCode="404" subStatusCode="-1" />
|
||||
<remove statusCode="403" subStatusCode="-1" />
|
||||
<remove statusCode="401" subStatusCode="-1" />
|
||||
<error statusCode="401" prefixLanguageFilePath="" path="/_error/401.html" responseMode="ExecuteURL" />
|
||||
<error statusCode="403" prefixLanguageFilePath="" path="/_error/403.html" responseMode="ExecuteURL" />
|
||||
<error statusCode="404" prefixLanguageFilePath="" path="/_error/404.html" responseMode="ExecuteURL" />
|
||||
<error statusCode="405" prefixLanguageFilePath="" path="/_error/405.html" responseMode="ExecuteURL" />
|
||||
<error statusCode="406" prefixLanguageFilePath="" path="/_error/406.html" responseMode="ExecuteURL" />
|
||||
<error statusCode="412" prefixLanguageFilePath="" path="/_error/412.html" responseMode="ExecuteURL" />
|
||||
<error statusCode="500" prefixLanguageFilePath="" path="/_error/500.html" responseMode="ExecuteURL" />
|
||||
<error statusCode="501" prefixLanguageFilePath="" path="/_error/501.html" responseMode="ExecuteURL" />
|
||||
<error statusCode="502" prefixLanguageFilePath="" path="/_error/502.html" responseMode="ExecuteURL" />
|
||||
</httpErrors>
|
||||
</system.webServer>
|
||||
</configuration>
|