diff options
author | Lucas Fryzek <lucas.fryzek@gmail.com> | 2022-11-02 18:35:40 -0400 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@gmail.com> | 2022-11-02 18:35:40 -0400 |
commit | 1920b397fad8b1d6cd0233a5aa9a12365b16a287 (patch) | |
tree | 2b10edd83a77f59dcfdce2f3a38bea4126e06fd1 /templates/front_page.html |
Initial commit
Diffstat (limited to 'templates/front_page.html')
-rw-r--r-- | templates/front_page.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/front_page.html b/templates/front_page.html new file mode 100644 index 0000000..ce987fb --- /dev/null +++ b/templates/front_page.html @@ -0,0 +1,24 @@ +<div class="title-header-container"> + <div class="animated-box"> + <ul class="animated-name"> + <li class="animated-name item-1">Lucas</li> + <li class="animated-name item-2">卢卡斯</li> + <li class="animated-name item-2">Λούκας</li> + <li class="animated-name item-2">Lukáš</li> + <li class="animated-name item-2">ルーカス</li> + <li class="animated-name item-1">Lucas</li> + </ul> + </div> + <h1 class=title-header> is a developer working on cool things. </h1> +</div> + +<h2 class="main-heading">Notes</h2> +<div class="notes-container"> + $for(notes)$ + <a href="$it.link$" class="note-link"> + <div class="note-box"> + $it.note$ + </div> + </a> + $endfor$ +</div> |