Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dca2556bca | |||
| 90fd87d042 | |||
| 9447e76815 | |||
| e64fbc0678 |
@@ -6,6 +6,9 @@ NovaconiumPHP is a high-performance PHP framework designed with inspiration from
|
|||||||
|
|
||||||
Pronounced: Noh-vah-koh-nee-um
|
Pronounced: Noh-vah-koh-nee-um
|
||||||
|
|
||||||
|
Packagist: https://packagist.org/packages/4lt/novaconium
|
||||||
|
Master Repo: https://git.4lt.ca/4lt/novaconium
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "4lt/novaconium",
|
"name": "4lt/novaconium",
|
||||||
"description": "A high-performance PHP framework built from the past.",
|
"description": "A high-performance PHP framework built from the past.",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
@@ -26,4 +26,4 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{% extends '@nytwig/master.html.twig' %}
|
{% extends '@novaconium/master.html.twig' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>This is twig</h1>
|
<h1>This is twig</h1>
|
||||||
|
|||||||
6
twig/foot.html.twig
Normal file
6
twig/foot.html.twig
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<!--
|
||||||
|
What goes very last on the page.
|
||||||
|
right before the /body
|
||||||
|
like javascript
|
||||||
|
or analytics
|
||||||
|
-->
|
||||||
3
twig/footer.html.twig
Normal file
3
twig/footer.html.twig
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<!--
|
||||||
|
What goes in the footer html tag
|
||||||
|
-->
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>{{ title | default('Welcome') }}</title>
|
<title>{{ title | default('Welcome') }}</title>
|
||||||
<meta name="generator" content="nickyeoman/phpframework" />
|
<meta name="generator" content="Novaconium" />
|
||||||
|
|
||||||
<meta name="description" content="{{ description | default('No description given') }}">
|
<meta name="description" content="{{ description | default('No description given') }}">
|
||||||
<meta name="keywords" content="{{ keywords | default('website') }}">
|
<meta name="keywords" content="{{ keywords | default('website') }}">
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html class="no-js" lang="en">
|
<html class="no-js" lang="en">
|
||||||
|
|
||||||
{% include '@override/mod_above_head.html.twig' ignore missing %}
|
{% include '@override/above_head.html.twig' ignore missing %}
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
{% include ['@override/mod_head.html.twig', '@novaconium/head.html.twig'] %}
|
{% include ['@override/head.html.twig', '@novaconium/head.html.twig'] %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body id="{{ pageid | default('pageid') }}">
|
<body id="{{ pageid | default('pageid') }}">
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
{# Page Header #}
|
{# Page Header #}
|
||||||
<header>
|
<header>
|
||||||
{% block headerbefore %}{% endblock %}
|
{% block headerbefore %}{% endblock %}
|
||||||
{% include ['@override/mod_nav.html.twig', '@novaconium/nav.html.twig'] %}
|
{% include ['@override/nav.html.twig', '@novaconium/nav.html.twig'] %}
|
||||||
{% block headerafter %}{% endblock %}
|
{% block headerafter %}{% endblock %}
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
@@ -34,9 +34,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<article>
|
<article>
|
||||||
{% include 'cms/mod_alex.html.twig' ignore missing %}
|
|
||||||
{% block content %}{% endblock %}
|
{% block content %}{% endblock %}
|
||||||
{% include 'cms/mod_simon.html.twig' ignore missing %}
|
|
||||||
</article>
|
</article>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -46,9 +44,9 @@
|
|||||||
{# Page Footer #}
|
{# Page Footer #}
|
||||||
<footer>
|
<footer>
|
||||||
{% block footerbefore %}{% endblock %}
|
{% block footerbefore %}{% endblock %}
|
||||||
{% include ['@override/mod_footer.html.twig', '@novaconium/footer.html.twig'] %}
|
{% include ['@override/footer.html.twig', '@novaconium/footer.html.twig'] %}
|
||||||
{% block footerafter %}{% endblock %}
|
{% block footerafter %}{% endblock %}
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
{% include ['@override/mod_foot.html.twig', '@novaconium/foot.html.twig'] %}
|
{% include ['@override/foot.html.twig', '@novaconium/foot.html.twig'] %}
|
||||||
</body></html>
|
</body></html>
|
||||||
|
|||||||
Reference in New Issue
Block a user