updated first page of framework
This commit is contained in:
@@ -1,7 +1,21 @@
|
||||
{% extends '@novaconium/master.html.twig' %}
|
||||
|
||||
{% block content %}
|
||||
<h1>This is twig</h1>
|
||||
<p>Content Here</p>
|
||||
{% endblock %}
|
||||
<img src="https://git.4lt.ca/4lt/novaconium/media/branch/master/_assets/novaconium-logo.png" aalt="Novaconium framework logo" />
|
||||
<h2>Minimalist PHP framework</h2>
|
||||
<p>
|
||||
Edit <code>App/routes.php</code> and <code>App/controllers/index.php</code><br>
|
||||
to customize this page.
|
||||
</p>
|
||||
<p>Sign in to the <a href="/novaconium">Administration</a></p>
|
||||
|
||||
<h2>Documentation</h2>
|
||||
<ul>
|
||||
<li>Style Sheets</li>
|
||||
<li><a href="https://git.4lt.ca/4lt/novaconium/src/branch/master/docs/twig-overrides.md">Twig overrides</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Repository</h2>
|
||||
<p class="small">Visit Source Control Repository for <a href="https://git.4lt.ca/4lt/novaconium">Novaconium</a></p>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
33
skeleton/novaconium/public/css/novaconium.css
Normal file
33
skeleton/novaconium/public/css/novaconium.css
Normal file
@@ -0,0 +1,33 @@
|
||||
body {
|
||||
background-color: #1b1f23;
|
||||
width: 100%;
|
||||
font-family: 'Fira Code', 'Source Code Pro', monospace;
|
||||
}
|
||||
|
||||
article {
|
||||
max-width: 900px;
|
||||
border: 1px solid #3b444c;
|
||||
background-color: #14171a;
|
||||
color: #fff;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: 'Fira Code', monospace;
|
||||
font-size: 13px;
|
||||
background-color: #0d1117;
|
||||
color: #c9d1d9;
|
||||
padding: 0.2em 0.4em;
|
||||
border-radius: 6px;
|
||||
border: 1px solid #30363d;
|
||||
}
|
||||
|
||||
.small {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-top: 40px;
|
||||
}
|
||||
Reference in New Issue
Block a user