homepage/source/about/me.html.twig

45 lines
1.4 KiB
Twig
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
layout: default
title: Обо мне
---
{% block content %}
<section class="about-me">
<div class="about-me__content">
<div class="about-me__note" id="about-me-note">Я люблю шоколад.</div>
<ul class="about-me__links">
<li class="about-me__link">
<a href="/">На главную</a>
</li>
<li class="about-me__link">
<a href="">Узнать чуть лучше</a>
</li>
</ul>
</div>
</section>
<script type="text/javascript">
window.addEventListener('DOMContentLoaded', function() {
var notes = [
'Любимый фильм "Три идиота".',
'Люблю кататься на велосипеде.',
'Люблю читать фантастические книги.',
'Люблю шоколад.',
'На день рождения ко мне можно прийти без подарка.',
'Не люблю пьяных людей.',
'Предпочитаю ходить в кино на 2D-сеансы.',
'Проехал на велосипеде 200 километров за день.',
'Работаю программистом.',
'Хотел бы побывать в горах.',
];
var note = notes[Math.floor(Math.random() * notes.length)];
document.getElementById('about-me-note').innerHTML = note;
});
</script>
{% endblock %}