1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <!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' | cur_lang }}" {% if work_selected %}class="selected"{% endif %}>{{ 'work' | lang }}</a></div> /
- <div><a href="{{ '/news' | cur_lang }}" {% if news_selected %}class="selected"{% endif %}>{{ 'news' | lang }}</a></div> /
- <div><a href="{{ '/about' | cur_lang }}" {% if about_selected %}class="selected"{% endif %}>{{ 'about' | lang }}</a></div> /
- <div><a href="{{ '/contact' | cur_lang }}" class="last{% if contact_selected %} selected{% endif %}">{{ 'contact' | lang }}</a></div>
- </h1>
- </div>
- <div class="hbox">
- <div class="header-subtitle">
- <div><a href="{{ '/work/all' | cur_lang }}" {% if all_selected %}class="selected"{% endif %}>{{ 'all' | lang }}</a></div> /
- <div><a href="{{ '/work/poster' | cur_lang }}" {% if poster_selected %}class="selected"{% endif %}>{{ 'poster' | lang }}</a></div> /
- <div><a href="{{ '/work/illustration' | cur_lang }}" {% if illustration_selected %}class="selected"{% endif %}>{{ 'illustration' | lang }}</a></div> /
- <div><a href="{{ '/work/editorial' | cur_lang }}" {% if editorial_selected %}class="selected"{% endif %}>{{ 'editorial' | lang }}</a></div> /
- <div><a href="{{ '/work/branding' | cur_lang }}" {% if branding_selected %}class="selected"{% endif %}>{{ 'branding' | lang }}</a></div> /
- <div><a href="{{ '/work/other' | cur_lang }}" class="last{% if other_selected %} selected{% endif %}">{{ 'other' | lang }}</a></div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </header>
- <main>
- {% block main %}
- {% endblock %}
- </main>
- <footer>
- <div class="copyright">
- <a class=>copyright</a> / <a href="/">www.alucho.com</a> / <a>2019</a> / <a href="/contact">{{ 'contact' | lang }}</a>
- </div>
- <div class="hbox">
- Fb
- Tw
- In
- </div>
- <div class="hbox">
- <h2 class="header-title">
- <div><a href="{{ '/work' | cur_lang }}">{{ 'work' | lang }}</a></div> /
- <div><a href="{{ '/news' | cur_lang }}">{{ 'news' | lang }}</a></div> /
- <div><a href="{{ '/about' | cur_lang }}">{{ 'about' | lang }}</a></div> /
- <div><a href="{{ '/contact' | cur_lang }}" class="last">{{ 'contact' | lang }}</a></div>
- </h2>
- </div>
- </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>
- </body>
- </html>
|