Gave a new structure to project

This commit is contained in:
Pierre 2018-05-10 11:16:54 +02:00
parent 993f16bacd
commit 005b1e4526
14 changed files with 40 additions and 40 deletions

View File

@ -1,15 +1,15 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
{% include common/head.html %}
<body id="page-top">
{% include nav.html %}
{% include common/nav.html %}
{{ content }}
{% include contact.html %}
{% include scripts.html %}
{% include common/contact.html %}
{% include common/scripts.html %}
</body>
</html>

View File

@ -1,35 +0,0 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body id="page-top">
<!-- Navbar -->
{% include nav.html %}
<!-- Main home block page -->
{% include header.html %}
<!-- Link to web app / android app -->
{% include call-to-action.html %}
<!-- Comunic features -->
{% include services.html %}
<!-- Quote -->
{% include quote.html %}
<!-- Other features link -->
{% include feature.html %}
<!-- Donate feature -->
{% include donate-feature.html %}
{% include contact.html %}
<!-- End of file scripts -->
{% include scripts.html %}
</body>
</html>

35
_layouts/home.html Executable file
View File

@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
{% include common/head.html %}
<body id="page-top">
<!-- Navbar -->
{% include common/nav.html %}
<!-- Main home block page -->
{% include home/header.html %}
<!-- Comunic features -->
{% include home/services.html %}
<!-- Link to web app / android app -->
{% include home/call-to-action.html %}
<!-- Other features link -->
{% include home/feature.html %}
<!-- Quote -->
{% include home/quote.html %}
<!-- Donate feature -->
{% include home/donate-feature.html %}
{% include common/contact.html %}
<!-- End of file scripts -->
{% include common/scripts.html %}
</body>
</html>

View File

@ -1,3 +1,3 @@
---
layout: front
layout: home
---