updated site
This commit is contained in:
parent
094b093b69
commit
5f708a4dc9
@ -9,16 +9,16 @@
|
||||
<body>
|
||||
|
||||
<nav>
|
||||
<a href="/" {% if page.url == "/" %}syle="color: green;"{% endif %}>Home</a>
|
||||
<a href="/about.html">About Us</a>
|
||||
<a href="/">Games</a>
|
||||
<a href="/">Contact Us</a>
|
||||
<a href="/" {% if page.url == "/" %}class="current"{% endif %}>Home</a>
|
||||
<a href="/about.html" {% if page.url == "/about.html" %}class="current"{% endif %}>About Us</a>
|
||||
<a href="/" {% if page.url == "/games.html" %}class="current"{% endif %}>Games </a>
|
||||
<a href="/contact.html" {% if page.url == "/contact.html" %}class="current"{% endif %}>Contact Us</a>
|
||||
</nav>
|
||||
|
||||
{{ content }}
|
||||
|
||||
<footer>
|
||||
<a href="index.html">Free Downloads</a>
|
||||
<a href="/downloads.html">Free Downloads</a>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
|
15
contact.html
Normal file
15
contact.html
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
title: Zeta Reticuli Gameworks
|
||||
layout: default
|
||||
---
|
||||
|
||||
|
||||
<div class="panel">
|
||||
<h1>
|
||||
Contact Information
|
||||
</h1>
|
||||
<hr>
|
||||
<p>Email: wpb@zrgameworks.com</p>
|
||||
<p>IRC: irc.ouch.chat #zrgameworks</p>
|
||||
</div>
|
||||
|
@ -5,4 +5,15 @@ layout: default
|
||||
|
||||
# homidicum
|
||||
|
||||
An fast paced FPS inspired by 90s boomer shooters
|
||||
An fast paced FPS inspired by 90s boomer shooters
|
||||
|
||||
|
||||
{% highlight cpp linenos %}
|
||||
void GDExample::_process(double delta) {
|
||||
time_passed += delta;
|
||||
|
||||
Vector2 new_position = Vector2(10.0 + (100.0 * sin(time_passed * 20.0)), 100.0 + (10.0 * cos(time_passed * 1.5)));
|
||||
|
||||
set_position(new_position);
|
||||
}
|
||||
{% endhighlight %}
|
@ -11,7 +11,7 @@ layout: default
|
||||
|
||||
<hr>
|
||||
|
||||
<div>
|
||||
<div class="panel">
|
||||
<a href="/games/homicidium.html">
|
||||
<img src="/static/img/title.svg" alt="homicidium" class="title">
|
||||
</a>
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 6.0 MiB After Width: | Height: | Size: 517 KiB |
106
static/style.css
106
static/style.css
@ -10,14 +10,21 @@ body {
|
||||
text-align: center;
|
||||
background-image: url("/static/img/blooddrip.png");
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
background-size: 75%;
|
||||
background-position: 150% 0%;
|
||||
}
|
||||
|
||||
nav {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
margin: 0 0 5rem 0;
|
||||
background-color: rgba(10,10,10,0.25);
|
||||
}
|
||||
|
||||
nav a {
|
||||
font-size: 2.5rem;
|
||||
margin: 0 2rem 0 2rem;
|
||||
}
|
||||
|
||||
a {
|
||||
@ -29,9 +36,8 @@ a:hover {
|
||||
color: green;
|
||||
}
|
||||
|
||||
nav a {
|
||||
font-size: 2.5rem;
|
||||
margin: 0 2rem 0 2rem;
|
||||
.current {
|
||||
color: green;
|
||||
}
|
||||
|
||||
hr {
|
||||
@ -48,9 +54,95 @@ hr {
|
||||
}
|
||||
|
||||
.title {
|
||||
display: block;
|
||||
margin: auto;
|
||||
width: 25%;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
padding: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
.panel {
|
||||
background-color: rgba(10,10,10,0.25);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
width: 50%;
|
||||
margin: 2rem auto 2rem auto;
|
||||
text-align: left;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.highlight pre { background-color: #222222 }
|
||||
.highlight .hll { background-color: #222222 }
|
||||
.highlight .c { color: #000080 } /* Comment */
|
||||
.highlight .err { color: #cccccc; border: 1px solid #FF0000 } /* Error */
|
||||
.highlight .g { color: #cccccc } /* Generic */
|
||||
.highlight .k { color: #cdcd00 } /* Keyword */
|
||||
.highlight .l { color: #cccccc } /* Literal */
|
||||
.highlight .n { color: #cccccc } /* Name */
|
||||
.highlight .o { color: #3399cc } /* Operator */
|
||||
.highlight .x { color: #cccccc } /* Other */
|
||||
.highlight .p { color: #cccccc } /* Punctuation */
|
||||
.highlight .cm { color: #000080 } /* Comment.Multiline */
|
||||
.highlight .cp { color: #000080 } /* Comment.Preproc */
|
||||
.highlight .c1 { color: #000080 } /* Comment.Single */
|
||||
.highlight .cs { color: #cd0000; font-weight: bold } /* Comment.Special */
|
||||
.highlight .gd { color: #cd0000 } /* Generic.Deleted */
|
||||
.highlight .ge { color: #cccccc; font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { color: #00cd00 } /* Generic.Inserted */
|
||||
.highlight .go { color: #808080 } /* Generic.Output */
|
||||
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { color: #cccccc; font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #0040D0 } /* Generic.Traceback */
|
||||
.highlight .kc { color: #cdcd00 } /* Keyword.Constant */
|
||||
.highlight .kd { color: #00cd00 } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #cd00cd } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #cdcd00 } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #cdcd00 } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #00cd00 } /* Keyword.Type */
|
||||
.highlight .ld { color: #cccccc } /* Literal.Date */
|
||||
.highlight .m { color: #cd00cd } /* Literal.Number */
|
||||
.highlight .s { color: #cd0000 } /* Literal.String */
|
||||
.highlight .na { color: #cccccc } /* Name.Attribute */
|
||||
.highlight .nb { color: #cd00cd } /* Name.Builtin */
|
||||
.highlight .nc { color: #00cdcd } /* Name.Class */
|
||||
.highlight .no { color: #cccccc } /* Name.Constant */
|
||||
.highlight .nd { color: #cccccc } /* Name.Decorator */
|
||||
.highlight .ni { color: #cccccc } /* Name.Entity */
|
||||
.highlight .ne { color: #666699; font-weight: bold } /* Name.Exception */
|
||||
.highlight .nf { color: #cccccc } /* Name.Function */
|
||||
.highlight .nl { color: #cccccc } /* Name.Label */
|
||||
.highlight .nn { color: #cccccc } /* Name.Namespace */
|
||||
.highlight .nx { color: #cccccc } /* Name.Other */
|
||||
.highlight .py { color: #cccccc } /* Name.Property */
|
||||
.highlight .nt { color: #cccccc } /* Name.Tag */
|
||||
.highlight .nv { color: #00cdcd } /* Name.Variable */
|
||||
.highlight .ow { color: #cdcd00 } /* Operator.Word */
|
||||
.highlight .w { color: #cccccc } /* Text.Whitespace */
|
||||
.highlight .mf { color: #cd00cd } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #cd00cd } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #cd00cd } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #cd00cd } /* Literal.Number.Oct */
|
||||
.highlight .sb { color: #cd0000 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #cd0000 } /* Literal.String.Char */
|
||||
.highlight .sd { color: #cd0000 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #cd0000 } /* Literal.String.Double */
|
||||
.highlight .se { color: #cd0000 } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #cd0000 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #cd0000 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #cd0000 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #cd0000 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #cd0000 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #cd0000 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #cd00cd } /* Name.Builtin.Pseudo */
|
||||
.highlight .vc { color: #00cdcd } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #00cdcd } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #00cdcd } /* Name.Variable.Instance */
|
||||
.highlight .il { color: #cd00cd } /* Literal.Number.Integer.Long */
|
||||
|
Loading…
x
Reference in New Issue
Block a user