1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-28 17:49:40 +02:00

Frontent build system is ready (#3)

* Frontent build system is ready

* Set up linter for frontend part

* move code to /src

* update db

* upd test

* remove db

* ignore .db
This commit is contained in:
Peter Savchenko 2018-09-07 19:24:09 +03:00 committed by GitHub
parent 3762ea3791
commit 248558a11f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 3003 additions and 219 deletions

11
src/views/layout.twig Normal file
View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>{{ title }}</title>
<link rel="stylesheet" href="/dist/bundle.css" />
<script src="/dist/bundle.js" onload="new Docs()"></script>
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>