Compare commits
3 Commits
775bdcdd07
...
37df8071fc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
37df8071fc | ||
|
|
098d77eae1 | ||
|
|
f891cd84ae |
@ -1,9 +1,9 @@
|
|||||||
AddCharset utf-8 .shtml .html .css .php .txt .js
|
AddCharset utf-8 .shtml .html .css .php .txt .js
|
||||||
|
|
||||||
# Disable caching of CSS and JS (for testing only).
|
# Disable caching of CSS and JS (for testing only).
|
||||||
<filesMatch ".(css|js)$">
|
# <filesMatch ".(css|js)$">
|
||||||
Header set Cache-Control "max-age=0, public"
|
# Header set Cache-Control "max-age=0, public"
|
||||||
</filesMatch>
|
# </filesMatch>
|
||||||
|
|
||||||
Options +Includes
|
Options +Includes
|
||||||
AddType text/html .shtml
|
AddType text/html .shtml
|
||||||
|
|||||||
@ -5,11 +5,21 @@
|
|||||||
/*=========*/
|
/*=========*/
|
||||||
|
|
||||||
body.home-page {
|
body.home-page {
|
||||||
--deus-body-padding: 2rem;
|
--deus-body-padding: 5rem 5rem 10rem 5rem;
|
||||||
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
}
|
}
|
||||||
|
@media only screen and (max-width: 960px) {
|
||||||
|
body.home-page {
|
||||||
|
--deus-body-padding: 4rem 4rem 8rem 4rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media only screen and (max-width: 520px) {
|
||||||
|
body.home-page {
|
||||||
|
--deus-body-padding: 3rem 3rem 8rem 3rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
body.home-page::before {
|
body.home-page::before {
|
||||||
content: none;
|
content: none;
|
||||||
}
|
}
|
||||||
@ -36,35 +46,77 @@ body.home-page #splash-image img {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
}
|
}
|
||||||
|
body.home-page #splash-image img.tall {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
@media only screen and (max-width: 960px) {
|
||||||
|
body.home-page #splash-image img.tall {
|
||||||
|
display: initial;
|
||||||
|
}
|
||||||
|
body.home-page #splash-image img.wide {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*================*/
|
/*================*/
|
||||||
/* Navigation UI. */
|
/* Navigation UI. */
|
||||||
/*================*/
|
/*================*/
|
||||||
|
|
||||||
body.home-page #main-nav {
|
body.home-page #main-nav {
|
||||||
top: -2rem;
|
top: unset;
|
||||||
|
bottom: -2rem;
|
||||||
opacity: 0.0;
|
opacity: 0.0;
|
||||||
|
border-bottom: none;
|
||||||
|
box-shadow: none;
|
||||||
|
background-color: transparent;
|
||||||
|
font-size: 1.75em;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
body.home-page #main-nav.shown {
|
body.home-page #main-nav.shown {
|
||||||
top: 0;
|
bottom: 0;
|
||||||
opacity: 1.0;
|
opacity: 1.0;
|
||||||
transition:
|
transition:
|
||||||
top 1s ease,
|
bottom 1s ease,
|
||||||
opacity 1s ease;
|
opacity 1s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body.home-page #main-nav a.text {
|
||||||
|
margin: 0 0.75em;
|
||||||
|
width: 4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.home-page #main-nav .social-buttons {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
font-size: 0.75em;
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
||||||
|
@media only screen and (max-width: 520px) {
|
||||||
|
body.home-page #main-nav .social-buttons {
|
||||||
|
flex-flow: column nowrap;
|
||||||
|
}
|
||||||
|
body.home-page #main-nav .social-buttons a + a {
|
||||||
|
margin: 0.5em 0 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body.home-page #main-nav .logo {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
/*===================*/
|
/*===================*/
|
||||||
/* Copyright notice. */
|
/* Copyright notice. */
|
||||||
/*===================*/
|
/*===================*/
|
||||||
|
|
||||||
body.home-page #copyright {
|
body.home-page #copyright {
|
||||||
bottom: -0.625rem;
|
top: -0.75rem;
|
||||||
opacity: 0.0;
|
opacity: 0.0;
|
||||||
}
|
}
|
||||||
body.home-page #copyright.shown {
|
body.home-page #copyright.shown {
|
||||||
bottom: 0.625rem;
|
top: 0.75rem;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition:
|
transition:
|
||||||
bottom 1s ease,
|
top 1s ease,
|
||||||
opacity 1s ease;
|
opacity 1s ease;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,11 +6,11 @@
|
|||||||
/*= Hover styles =*/
|
/*= Hover styles =*/
|
||||||
/*=--------------=*/
|
/*=--------------=*/
|
||||||
|
|
||||||
.img img:hover {
|
.image-wrapper img:hover {
|
||||||
filter: drop-shadow(0 0 3px #777);
|
filter: drop-shadow(0 0 3px #777);
|
||||||
cursor: zoom-in;
|
cursor: zoom-in;
|
||||||
}
|
}
|
||||||
.img img:active {
|
.image-wrapper img:active {
|
||||||
transform: scale(0.975);
|
transform: scale(0.975);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -84,8 +84,8 @@ String.prototype.hasPrefix = function (prefix) {
|
|||||||
function imageFocusSetup() {
|
function imageFocusSetup() {
|
||||||
if (typeof GW.imageFocus == "undefined")
|
if (typeof GW.imageFocus == "undefined")
|
||||||
GW.imageFocus = {
|
GW.imageFocus = {
|
||||||
contentImagesSelector: "article img, .gallery img",
|
contentImagesSelector: ".gallery img",
|
||||||
focusedImageSelector: "article img.focused, .gallery img.focused",
|
focusedImageSelector: ".gallery img.focused",
|
||||||
shrinkRatio: 0.975,
|
shrinkRatio: 0.975,
|
||||||
hideUITimerDuration: 1500,
|
hideUITimerDuration: 1500,
|
||||||
hideUITimerExpired: () => {
|
hideUITimerExpired: () => {
|
||||||
@ -118,14 +118,11 @@ function imageFocusSetup() {
|
|||||||
image.addEventListener("click", GW.imageClickedToFocus);
|
image.addEventListener("click", GW.imageClickedToFocus);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Wrap all images in a span.
|
// Add image wrapper class.
|
||||||
document.querySelectorAll(GW.imageFocus.contentImagesSelector).forEach(image => {
|
document.querySelectorAll(GW.imageFocus.contentImagesSelector).forEach(image => {
|
||||||
let wrapper = document.createElement("span");
|
let wrapper = image.closest(".img");
|
||||||
wrapper.classList.add("image-wrapper", "img");
|
if (wrapper)
|
||||||
image.parentElement.insertBefore(wrapper, image);
|
wrapper.classList.add("image-wrapper");
|
||||||
wrapper.appendChild(image);
|
|
||||||
wrapper.classList.add(...image.classList);
|
|
||||||
image.classList.remove(...image.classList);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Create the image focus overlay.
|
// Create the image focus overlay.
|
||||||
@ -603,10 +600,3 @@ function focusImageSpecifiedByURL() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************/
|
|
||||||
/* INITIALIZATION */
|
|
||||||
/******************/
|
|
||||||
|
|
||||||
imageFocusSetup();
|
|
||||||
focusImageSpecifiedByURL();
|
|
||||||
|
|||||||
@ -456,10 +456,10 @@ registerInitializer('earlyInitialize', true, () => (query("#content") != null),
|
|||||||
/*************************/
|
/*************************/
|
||||||
|
|
||||||
registerInitializer('pageLayoutFinished', false, () => (document.readyState == "complete"), () => {
|
registerInitializer('pageLayoutFinished', false, () => (document.readyState == "complete"), () => {
|
||||||
GWLog("INITIALIZER pageLayoutFinished");
|
|
||||||
|
|
||||||
forceInitializer('earlyInitialize');
|
forceInitializer('earlyInitialize');
|
||||||
|
|
||||||
|
GWLog("INITIALIZER pageLayoutFinished");
|
||||||
|
|
||||||
// We pre-query the relevant elements, so we don’t have to run queryAll on
|
// We pre-query the relevant elements, so we don’t have to run queryAll on
|
||||||
// every firing of the scroll listener.
|
// every firing of the scroll listener.
|
||||||
GW.scrollState = {
|
GW.scrollState = {
|
||||||
@ -472,5 +472,18 @@ registerInitializer('pageLayoutFinished', false, () => (document.readyState == "
|
|||||||
GW.scrollState.siteNavUI.forEach(element => {
|
GW.scrollState.siteNavUI.forEach(element => {
|
||||||
element.addEventListener("mouseover", () => { showSiteNavUI(); });
|
element.addEventListener("mouseover", () => { showSiteNavUI(); });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Wrap all images in a span.
|
||||||
|
document.querySelectorAll("main > nav ~ * img").forEach(image => {
|
||||||
|
let wrapper = document.createElement("span");
|
||||||
|
wrapper.classList.add("img");
|
||||||
|
image.parentElement.insertBefore(wrapper, image);
|
||||||
|
wrapper.appendChild(image);
|
||||||
|
wrapper.classList.add(...image.classList);
|
||||||
|
image.classList.remove(...image.classList);
|
||||||
|
});
|
||||||
|
|
||||||
|
imageFocusSetup();
|
||||||
|
focusImageSpecifiedByURL();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
<div id='copyright'>
|
<div id='copyright'>
|
||||||
<p>© 2020–present DEUS gaming</p>
|
<p>© 2020–present Team DEUS</p>
|
||||||
<p>SOULCALIBUR and SOULCALIBUR VI World Tour are © <a href="https://www.bandainamcoent.com/">BANDAI NAMCO ENTERTAINMENT</a> </p>
|
<p>SOULCALIBUR and SOULCALIBUR VI World Tour are © <a href="https://www.bandainamcoent.com/">BANDAI NAMCO ENTERTAINMENT</a> </p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -13,9 +13,14 @@
|
|||||||
data-deus-icon=''
|
data-deus-icon=''
|
||||||
href='/posts'
|
href='/posts'
|
||||||
>News</a>
|
>News</a>
|
||||||
|
<a
|
||||||
|
class='nav-item text icon-regular'
|
||||||
|
data-deus-icon=''
|
||||||
|
href='/pages/players'
|
||||||
|
>Players</a>
|
||||||
<div class='social-buttons'>
|
<div class='social-buttons'>
|
||||||
<a class='social-button share' href='#'></a>
|
<!-- <a class='social-button share' href='#'></a>
|
||||||
<a class='social-button facebook' href='#'></a>
|
<a class='social-button facebook' href='#'></a> -->
|
||||||
<a class='social-button twitter' href='#'></a>
|
<a class='social-button twitter' href='#'></a>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
10
index.shtml
@ -1,13 +1,14 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>DEUS gaming</title>
|
<title>Team DEUS</title>
|
||||||
<!--#include virtual="/includes/head-content.html" -->
|
<!--#include virtual="/includes/head-content.html" -->
|
||||||
<link rel='stylesheet' type='text/css' href='/assets/css/home-page.css'>
|
<link rel='stylesheet' type='text/css' href='/assets/css/home-page.css'>
|
||||||
</head>
|
</head>
|
||||||
<body class='home-page'>
|
<body class='home-page'>
|
||||||
<div id='splash-image' class='hidden'>
|
<div id='splash-image' class='hidden'>
|
||||||
<img src='/assets/images/deus-logo-text-horizontal.png'>
|
<img class='wide' src='/assets/images/deus-logo-text-horizontal.png'>
|
||||||
|
<img class='tall' src='/assets/images/deus-logo-text.png'>
|
||||||
</div>
|
</div>
|
||||||
<main>
|
<main>
|
||||||
<!--#include virtual="/includes/main-nav.html" -->
|
<!--#include virtual="/includes/main-nav.html" -->
|
||||||
@ -17,12 +18,9 @@
|
|||||||
</body>
|
</body>
|
||||||
<script>
|
<script>
|
||||||
document.querySelector("#splash-image").classList.remove("hidden");
|
document.querySelector("#splash-image").classList.remove("hidden");
|
||||||
setTimeout(() => {
|
|
||||||
document.querySelector("#splash-image").classList.add("fade");
|
|
||||||
}, 2000);
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
document.querySelector("#main-nav").classList.add("shown");
|
document.querySelector("#main-nav").classList.add("shown");
|
||||||
document.querySelector("#copyright").classList.add("shown");
|
document.querySelector("#copyright").classList.add("shown");
|
||||||
}, 2000);
|
}, 1500);
|
||||||
</script>
|
</script>
|
||||||
</html>
|
</html>
|
||||||
|
Before Width: | Height: | Size: 114 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
@ -1,18 +1,19 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang='en-US'>
|
<html lang='en-US'>
|
||||||
<head>
|
<head>
|
||||||
<title>DEUS gaming</title>
|
<title>Team DEUS</title>
|
||||||
<!--#include virtual="/includes/head-content.html" -->
|
<!--#include virtual="/includes/head-content.html" -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<main>
|
<main>
|
||||||
<!--#include virtual="/includes/main-nav.html" -->
|
<!--#include virtual="/includes/main-nav.html" -->
|
||||||
<article>
|
<article>
|
||||||
<h1>About DEUS gaming</h1>
|
<h1>About Team DEUS</h1>
|
||||||
<section>
|
<section>
|
||||||
|
|
||||||
<p>DEUS is a New York City based e-Sports organization dedicated to empowering young talented players to make a name for themselves on the global stage. We are focused on <a href="https://scworldtour.com/">SOULCALIBUR VI</a> as our game of choice. </p><img src='soulcaliburvi.png' class='right' />
|
<p>DEUS is a New York City based e-Sports organization dedicated to empowering young talented players to make a name for themselves on the global stage. We are focused on <a href="https://scworldtour.com/">SOULCALIBUR VI</a> as our game of choice. </p>
|
||||||
<p>DEUS was started in 2020 by Ian Friedman (<a href="https://twitter.com/sabindeus">SabinDeus</a>) as a way to help the talented New York Soulcalibur scene grow beyond the boundaries of the Northeast United States. </p>
|
<img src='soulcaliburvi.png' class='right' />
|
||||||
|
<p>DEUS was started in 2020 by Ian Friedman (<a href="https://twitter.com/sabindeus">SabinDeus</a>) as a way to help the talented New York Soul Calibur scene grow beyond the boundaries of the Northeast United States. </p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.3 MiB |
|
Before Width: | Height: | Size: 941 KiB |
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang='en-US'>
|
<html lang='en-US'>
|
||||||
<head>
|
<head>
|
||||||
<title>DEUS gaming</title>
|
<title>Team DEUS</title>
|
||||||
<!--#include virtual="/includes/head-content.html" -->
|
<!--#include virtual="/includes/head-content.html" -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang='en-US'>
|
<html lang='en-US'>
|
||||||
<head>
|
<head>
|
||||||
<title>DEUS gaming</title>
|
<title>Team DEUS</title>
|
||||||
<!--#include virtual="/includes/head-content.html" -->
|
<!--#include virtual="/includes/head-content.html" -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
31
pages/players/incendiate/index.shtml
Executable file
@ -0,0 +1,31 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang='en-US'>
|
||||||
|
<head>
|
||||||
|
<title>Team DEUS</title>
|
||||||
|
<!--#include virtual="/includes/head-content.html" -->
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main class='gallery-layout'>
|
||||||
|
<!--#include virtual="/includes/main-nav.html" -->
|
||||||
|
<div class='gallery'>
|
||||||
|
<img class='medium' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='medium' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='small' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='small' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='small' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='small' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='small' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='small' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
</div>
|
||||||
|
<article>
|
||||||
|
<h1>Enders J</h1>
|
||||||
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis diam turpis, at sagittis tortor pulvinar sed. Quisque sollicitudin ex in ultrices mattis. Cras vehicula odio at feugiat fermentum. Nunc mi lectus, iaculis eget velit vel, gravida elementum arcu. Nam facilisis, erat at dictum tincidunt, nunc ex ultricies elit, nec ullamcorper nunc purus eget nunc. Nulla facilisi. Fusce volutpat libero eget mollis ornare. Curabitur auctor ornare viverra. Nam sollicitudin lacus magna, eu vestibulum nulla consequat at. Vestibulum tempus dolor sed feugiat lobortis. Nulla facilisi. Fusce malesuada, velit a posuere vulputate, nisl mauris imperdiet odio, a porta diam felis eu ante. Maecenas mollis nulla enim, vitae gravida justo laoreet a. Mauris blandit orci a odio vestibulum rutrum. Fusce lobortis libero ut efficitur pretium. Donec semper, lectus gravida ultricies vulputate, mauris arcu laoreet massa, at sollicitudin tortor metus ut libero.</p>
|
||||||
|
<p>Maecenas mattis convallis risus, sed mattis nibh sagittis et. Integer sed nulla quis ligula auctor fermentum non a felis. Mauris vitae eros quis nulla blandit dignissim. Cras bibendum augue non leo luctus bibendum. Nunc et porttitor nunc. Aenean at ipsum vel ligula volutpat mattis. Maecenas feugiat mauris vitae nibh pharetra venenatis. Nullam ornare dolor nec ex imperdiet pharetra condimentum id elit. Integer orci neque, dignissim non neque ut, aliquam commodo tellus. Suspendisse rhoncus neque tempus magna luctus, sodales rhoncus ipsum gravida. Maecenas et hendrerit augue.</p>
|
||||||
|
<p>Pellentesque dapibus leo eget odio imperdiet, ac pellentesque elit finibus. In eu fermentum risus. In pretium lobortis efficitur. Proin hendrerit nisl magna, ut tempor dui tristique id. Morbi convallis risus at erat vehicula interdum. Nunc pellentesque metus quis vulputate sodales. Morbi consectetur massa turpis, ac condimentum massa rutrum ut. Vestibulum finibus felis ut magna hendrerit, non blandit nulla iaculis. Fusce commodo aliquet volutpat. Curabitur id bibendum lectus. Maecenas et scelerisque turpis, at vestibulum sem. Donec non mauris felis. Maecenas in nunc rutrum, dapibus nulla sed, vestibulum neque. Donec a lacus venenatis, tempus nunc quis, pellentesque mauris. Cras pharetra bibendum eros at efficitur. Nunc laoreet cursus elit ac pellentesque.</p>
|
||||||
|
<p>Etiam eu nisl sapien. Maecenas vehicula vitae metus in viverra. Fusce nec sapien malesuada, cursus quam eget, semper justo. Donec bibendum accumsan ante, in porta urna porta a. Ut luctus odio lacus, pulvinar semper ex lacinia accumsan. Curabitur sit amet rutrum ligula. Nam ex augue, tempor ut tortor et, vehicula hendrerit felis. Curabitur sit amet massa diam. Vestibulum ante urna, varius sed nunc vitae, laoreet dignissim enim. Suspendisse nec suscipit sem, vitae egestas tortor. Mauris auctor maximus dolor, vitae elementum nisi ullamcorper nec.</p>
|
||||||
|
</article>
|
||||||
|
<!--#include virtual="/includes/colophon.html" -->
|
||||||
|
</main>
|
||||||
|
<!--#include virtual="/includes/foot-content.html" -->
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
After Width: | Height: | Size: 4.2 MiB |
21
pages/players/index.shtml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang='en-US'>
|
||||||
|
<head>
|
||||||
|
<title>Team DEUS</title>
|
||||||
|
<!--#include virtual="/includes/head-content.html" -->
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main class='gallery-layout'>
|
||||||
|
<!--#include virtual="/includes/main-nav.html" -->
|
||||||
|
<div class='gallery'>
|
||||||
|
<!-- Images (<img> tags) go here (with one class of { small, medium, large }). -->
|
||||||
|
<img src="endersj/cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg" class='medium' />
|
||||||
|
<img src="ramon/sophitia-alexandra-soulcalibur6-artwork.png" class='medium' />
|
||||||
|
<img src="incendiate/ivy-valentine-soulcalibur6-character-artwork.jpg" class='medium' />
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!--#include virtual="/includes/colophon.html" -->
|
||||||
|
</main>
|
||||||
|
<!--#include virtual="/includes/foot-content.html" -->
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
31
pages/players/ramon/index.shtml
Executable file
@ -0,0 +1,31 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang='en-US'>
|
||||||
|
<head>
|
||||||
|
<title>Team DEUS</title>
|
||||||
|
<!--#include virtual="/includes/head-content.html" -->
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main class='gallery-layout'>
|
||||||
|
<!--#include virtual="/includes/main-nav.html" -->
|
||||||
|
<div class='gallery'>
|
||||||
|
<img class='medium' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='medium' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='small' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='small' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='small' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='small' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='small' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
<img class='small' src='cervantes-soulcalibur6-artwork-by-takuji-kawano.jpg'>
|
||||||
|
</div>
|
||||||
|
<article>
|
||||||
|
<h1>Enders J</h1>
|
||||||
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis diam turpis, at sagittis tortor pulvinar sed. Quisque sollicitudin ex in ultrices mattis. Cras vehicula odio at feugiat fermentum. Nunc mi lectus, iaculis eget velit vel, gravida elementum arcu. Nam facilisis, erat at dictum tincidunt, nunc ex ultricies elit, nec ullamcorper nunc purus eget nunc. Nulla facilisi. Fusce volutpat libero eget mollis ornare. Curabitur auctor ornare viverra. Nam sollicitudin lacus magna, eu vestibulum nulla consequat at. Vestibulum tempus dolor sed feugiat lobortis. Nulla facilisi. Fusce malesuada, velit a posuere vulputate, nisl mauris imperdiet odio, a porta diam felis eu ante. Maecenas mollis nulla enim, vitae gravida justo laoreet a. Mauris blandit orci a odio vestibulum rutrum. Fusce lobortis libero ut efficitur pretium. Donec semper, lectus gravida ultricies vulputate, mauris arcu laoreet massa, at sollicitudin tortor metus ut libero.</p>
|
||||||
|
<p>Maecenas mattis convallis risus, sed mattis nibh sagittis et. Integer sed nulla quis ligula auctor fermentum non a felis. Mauris vitae eros quis nulla blandit dignissim. Cras bibendum augue non leo luctus bibendum. Nunc et porttitor nunc. Aenean at ipsum vel ligula volutpat mattis. Maecenas feugiat mauris vitae nibh pharetra venenatis. Nullam ornare dolor nec ex imperdiet pharetra condimentum id elit. Integer orci neque, dignissim non neque ut, aliquam commodo tellus. Suspendisse rhoncus neque tempus magna luctus, sodales rhoncus ipsum gravida. Maecenas et hendrerit augue.</p>
|
||||||
|
<p>Pellentesque dapibus leo eget odio imperdiet, ac pellentesque elit finibus. In eu fermentum risus. In pretium lobortis efficitur. Proin hendrerit nisl magna, ut tempor dui tristique id. Morbi convallis risus at erat vehicula interdum. Nunc pellentesque metus quis vulputate sodales. Morbi consectetur massa turpis, ac condimentum massa rutrum ut. Vestibulum finibus felis ut magna hendrerit, non blandit nulla iaculis. Fusce commodo aliquet volutpat. Curabitur id bibendum lectus. Maecenas et scelerisque turpis, at vestibulum sem. Donec non mauris felis. Maecenas in nunc rutrum, dapibus nulla sed, vestibulum neque. Donec a lacus venenatis, tempus nunc quis, pellentesque mauris. Cras pharetra bibendum eros at efficitur. Nunc laoreet cursus elit ac pellentesque.</p>
|
||||||
|
<p>Etiam eu nisl sapien. Maecenas vehicula vitae metus in viverra. Fusce nec sapien malesuada, cursus quam eget, semper justo. Donec bibendum accumsan ante, in porta urna porta a. Ut luctus odio lacus, pulvinar semper ex lacinia accumsan. Curabitur sit amet rutrum ligula. Nam ex augue, tempor ut tortor et, vehicula hendrerit felis. Curabitur sit amet massa diam. Vestibulum ante urna, varius sed nunc vitae, laoreet dignissim enim. Suspendisse nec suscipit sem, vitae egestas tortor. Mauris auctor maximus dolor, vitae elementum nisi ullamcorper nec.</p>
|
||||||
|
</article>
|
||||||
|
<!--#include virtual="/includes/colophon.html" -->
|
||||||
|
</main>
|
||||||
|
<!--#include virtual="/includes/foot-content.html" -->
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
BIN
pages/players/ramon/sophitia-alexandra-soulcalibur6-artwork.png
Normal file
|
After Width: | Height: | Size: 24 MiB |
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang='en-US'>
|
<html lang='en-US'>
|
||||||
<head>
|
<head>
|
||||||
<title>DEUS gaming</title>
|
<title>Team DEUS</title>
|
||||||
<!--#include virtual="/includes/head-content.html" -->
|
<!--#include virtual="/includes/head-content.html" -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang='en-US'>
|
<html lang='en-US'>
|
||||||
<head>
|
<head>
|
||||||
<title>DEUS gaming</title>
|
<title>Team DEUS</title>
|
||||||
<!--#include virtual="/includes/head-content.html" -->
|
<!--#include virtual="/includes/head-content.html" -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
BIN
social-assets/1.jpg
Normal file
|
After Width: | Height: | Size: 1.8 MiB |
BIN
social-assets/2.jpg
Normal file
|
After Width: | Height: | Size: 2.0 MiB |
BIN
social-assets/87001780_186397576015031_7277062964782301184_n.png
Normal file
|
After Width: | Height: | Size: 2.7 MiB |
BIN
social-assets/DEUS_avatar.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
social-assets/DEUS_twitter_banner.png
Normal file
|
After Width: | Height: | Size: 496 KiB |
BIN
social-assets/enders copy.png
Normal file
|
After Width: | Height: | Size: 138 KiB |
BIN
social-assets/enders.psd
Normal file
@ -1,2 +1 @@
|
|||||||
Order Deny,Allow
|
|
||||||
Deny from all
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang='en-US'>
|
<html lang='en-US'>
|
||||||
<head>
|
<head>
|
||||||
<title>DEUS gaming</title>
|
<title>Team DEUS</title>
|
||||||
<!--#include virtual="/includes/head-content.html" -->
|
<!--#include virtual="/includes/head-content.html" -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang='en-US'>
|
<html lang='en-US'>
|
||||||
<head>
|
<head>
|
||||||
<title>DEUS gaming</title>
|
<title>Team DEUS</title>
|
||||||
<!--#include virtual="/includes/head-content.html" -->
|
<!--#include virtual="/includes/head-content.html" -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang='en-US'>
|
<html lang='en-US'>
|
||||||
<head>
|
<head>
|
||||||
<title>DEUS gaming</title>
|
<title>Team DEUS</title>
|
||||||
<!--#include virtual="/includes/head-content.html" -->
|
<!--#include virtual="/includes/head-content.html" -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||