12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>Alucho Portfolio</title>
- <link rel="stylesheet" href="{{ 'css/main.css' | static }}">
- <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
- <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
- <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
- <link rel="manifest" href="/site.webmanifest">
- <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
- <meta name="msapplication-TileColor" content="#da532c">
- <meta name="theme-color" content="#ffffff">
- <script src="{{ 'js/eye.js' | static }}"></script>
- </head>
- <body>
- <header>
- <div class="header-box">
- <div class="lbox">
- <div class="vbox">
- <a class="first en {% if en %}selected{% endif %}" href="{{ 'en' | lang_url }}">en</a>
- <a class="first {% if es %}selected{% endif %}" href="{{ 'es' | lang_url }}">es</a>
- </div>
- <object id="logo" type="image/svg+xml" data="{{ 'svg/alucho-logo.svg' | static }}"></object>
- <div class="vbox">
- <div id="alucho-title" class="hbox"><h1 class="header-title"><a>Alucho Rodríguez</a></h1></div>
- <div id="designer-subtitle" class="hbox"><a>{{ 'graphic designer' | lang }}</a></div>
- </div>
- </div>
- <div id="menu" class="rbox">
- <div class="vbox">
- <div class="hbox">
- <h1 class="header-title">
- <div><a href="/work" {% if work_selected %}class="selected"{% endif %}>{{ 'work' | lang }}</a></div> /
- <div><a href="/news" {% if news_selected %}class="selected"{% endif %}>{{ 'news' | lang }}</a></div> /
- <div><a href="/about"{% if about_selected %}class="selected"{% endif %}>{{ 'about' | lang }}</a></div> /
- <div><a href="/contact" {% if contact_selected %}class="selected"{% endif %}>{{ 'contact' | lang }}</a></div> /
- </h1>
- </div>
- <div class="hbox">
- <div class="header-subtitle">
- <div><a href="/work/all" {% if all_selected %}class="selected"{% endif %}>{{ 'all' | lang }}</a></div> /
- <div><a href="/work/poster" {% if poster_selected %}class="selected"{% endif %}>{{ 'poster' | lang }}</a></div> /
- <div><a href="/work/illustration" {% if illustration_selected %}class="selected"{% endif %}>{{ 'illustration' | lang }}</a></div> /
- <div><a href="/work/editorial" {% if editorial_selected %}class="selected"{% endif %}>{{ 'editorial' | lang }}</a></div> /
- <div><a href="/work/branding" {% if branding_selected %}class="selected"{% endif %}>{{ 'branding' | lang }}</a></div> /
- <div><a href="/work/other" {% if other_selected %}class="selected"{% endif %}>{{ 'other' | lang }}</a></div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </header>
- <div id="main" class="v">
- <div class="main-content">
- {% block main %}
- {% endblock %}
- </div>
- </div>
- <footer>
- <h3>
- copyright / <a href="/">www.alucho.com</a> / 2019 / <a href="/contact">{{ 'contact' | lang }}</a>
- </h3>
- </footer>
- <form name="setLangEnglish" action="/i18n/setlang/" method="POST">
- {# {% csrf_token %} #}
- <input name="next" type="hidden" value="{{ path }}"/>
- <input type="hidden" name="language" value="en"/>
- </form>
- <form name="setLangSpanish" action="/i18n/setlang/" method="POST">
- {# {% csrf_token %} #}
- <input name="next" type="hidden" value="{{ path }}"/>
- <input type="hidden" name="language" value="es"/>
- </form>
- <script src="{{ 'js/eye.js' | static }}"></script>
- </body>
- </html>
|