diff options
author | Vitaly Takmazov | 2021-03-31 00:44:49 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2021-03-31 00:44:49 +0300 |
commit | 93fe99d9bfc9ae00f4164ea0ba32290722dff4dd (patch) | |
tree | f0637a6ad99ae7033e2fee4d100ed1fc63e64728 /src/main/resources/templates/views/partial/homecolumn.html | |
parent | fbe50e415fbb3da5a7fa151338b00e6a94dc8d5d (diff) |
Resource filtering is handled by Spring Boot Maven plugin
Diffstat (limited to 'src/main/resources/templates/views/partial/homecolumn.html')
-rw-r--r-- | src/main/resources/templates/views/partial/homecolumn.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/main/resources/templates/views/partial/homecolumn.html b/src/main/resources/templates/views/partial/homecolumn.html new file mode 100644 index 00000000..a4cca153 --- /dev/null +++ b/src/main/resources/templates/views/partial/homecolumn.html @@ -0,0 +1,25 @@ +<div class="toolbar"> + <a href="/?show=top" title="Top"> + <i data-icon="ei-heart" data-size="s"></i> + <span class="desktop">Top</span> + </a> + <a href="/?show=all" title="{{ i18n("messages", "link.allMessages") }}"> + <i data-icon="ei-search" data-size="s"></i> + <span class="desktop">{{ i18n("messages","link.allMessages") }}</span> + </a> + <a href="/?show=photos" title="{{ i18n("messages", "link.withPhotos") }}"> + <i data-icon="ei-camera" data-size="s"></i> + <span class="desktop">{{ i18n("messages", "link.withPhotos") }}</span> + </a> +</div> +<div class="tags desktop"> + <h4>{{ i18n("messages","link.trends") }}</h4> + {% include "views/partial/tags" %} + {% if showAdv | default(false) %} + <h4>Наши друзья</h4> + <a target="_blank" href="https://ru.jooble.org"> + <img src="https://ru.jooble.org/css/images/logos/jooble_80x30.png" alt="Работа в России"/> + </a> + {% endif %} +</div> +{% include "views/partial/footer" %}
\ No newline at end of file |