-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(framework): add ejs et twig service
- Loading branch information
1 parent
dce3fc1
commit f82544c
Showing
37 changed files
with
1,602 additions
and
1,185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!doctype html> | ||
<html lang="{{nodefony.local|escape}}"> | ||
<head> | ||
|
||
<meta charset="utf-8"> | ||
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"> | ||
<meta name="generator" content="Nodefony (https://nodefony.net)"> | ||
<meta name="keywords" content="web,Framework,realtime,node.js,symfony,javascript,npm,linux"> | ||
<meta name="description" content="Node.js full-stack web framework Symfony Like"> | ||
|
||
<title><%= nodefony.name %></title> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<h1><%= nodefony.name %></h1> | ||
<h1><%= name %></h1> | ||
|
||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!doctype html> | ||
<html lang="{{nodefony.local|escape}}"> | ||
<head> | ||
{% block head %} | ||
{% block meta %} | ||
<meta charset="utf-8"> | ||
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"> | ||
<meta name="generator" content="Nodefony (https://nodefony.net)"> | ||
<meta name="keywords" content="web,Framework,realtime,node.js,symfony,javascript,npm,linux"> | ||
<meta name="description" content="Node.js full-stack web framework Symfony Like"> | ||
{% endblock %} | ||
{% block description %}{% endblock %} | ||
<title>{% block title %}{{nodefony.name|escape}}{% endblock %}</title> | ||
{% block stylesheets %} {% endblock %} | ||
{% endblock %} | ||
|
||
</head> | ||
|
||
<body> | ||
<h1>{{nodefony.name}}</h1> | ||
{% block body %}{% endblock %} | ||
{% block javascripts %} {% endblock %} | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.