water_http 4.0.3

fast web http framework that support http 1 and http 2 with very easy use
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html lang="ar">

{% macro assets(name) -%}
public/themes/main/{{ name }}
{%- endmacro -%}

<header>
    <meta charset="UTF-8">
    <meta content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no" name="viewport">
    <link rel="stylesheet" href='{% call assets("assets/css/app.min.css")%}'>
    <link rel="stylesheet" href='{% call assets("assets/css/style.css")%}'>
    <link rel="stylesheet" href='{% call assets("assets/css/components.css")%}'>
    <link rel="stylesheet" href= '{% call assets("assets/css/custom.css")%}'>
    <link rel='shortcut icon' type='image/x-icon' href="favicon.ico" />

</header>
{% include "layouts/main/main_structure.html" %}
</html>