Browse Source
use emoji icons because they're prettier
pull/64/head
Aaron Parecki
8 years ago
No known key found for this signature in database
GPG Key ID: 276C2817346D6056
1 changed files with
10 additions and
9 deletions
-
views/dashboard.php
|
|
@ -2,21 +2,22 @@ |
|
|
|
<?= partial('partials/header') ?>
|
|
|
|
|
|
|
|
<ul class="post-type-icons"> |
|
|
|
<li><a href="/editor"><img src="/images/quill.svg" width="60"></a></li> |
|
|
|
<li><a href="/new"><img src="/images/note.svg" width="60"></a></li> |
|
|
|
<li><a href="/event"><img src="/images/calendar.svg" width="60"></a></li> |
|
|
|
<li><a href="/bookmark"><img src="/images/bookmark.svg" width="60"></a></li> |
|
|
|
<li><a href="/favorite"><img src="/images/star.svg" width="60"></a></li> |
|
|
|
<li><a href="/repost"><img src="/images/repost.svg" width="60"></a></li> |
|
|
|
<li><a href="/itinerary"><img src="/images/plane.svg" width="60"></a></li> |
|
|
|
<li><a href="/email"><img src="/images/email.svg" width="60"></a></li> |
|
|
|
<li><a href="/editor">📄</a></li> |
|
|
|
<li><a href="/new">✏️</a></li> |
|
|
|
<li><a href="/event">📅</a></li> |
|
|
|
<li><a href="/bookmark">🔖</a></li> |
|
|
|
<li><a href="/favorite">👍</a></li> |
|
|
|
<li><a href="/repost">♺</a></li> |
|
|
|
<li><a href="/itinerary">✈️</a></li> |
|
|
|
<li><a href="/email">✉️</a></li> |
|
|
|
</ul> |
|
|
|
|
|
|
|
</div> |
|
|
|
<style type="text/css"> |
|
|
|
.post-type-icons { |
|
|
|
margin-top: 1em; |
|
|
|
margin-top: 0; |
|
|
|
list-style-type: none; |
|
|
|
font-size: 48pt; |
|
|
|
} |
|
|
|
.post-type-icons li { |
|
|
|
float: left; |
|
|
|