Picsur/frontend/src/app/components/footer/footer.component.html

25 lines
600 B
HTML
Raw Normal View History

2022-02-28 20:09:27 +00:00
<footer class="container">
2022-03-12 21:37:45 +00:00
<p>
2022-03-28 14:47:07 +00:00
<!-- Made into two spans, make sure browsers break at the right point -->
2022-03-21 21:58:16 +00:00
<span class="line">
2022-03-23 22:21:29 +00:00
Made with
<span class="material-icons-outlined heart"> favorite_border </span>
by
2023-03-15 13:24:26 +00:00
<a class="link-unstyled" href="https://caramelfur.dev" target="_blank">
Caramel
2022-09-04 13:01:22 +00:00
</a>
2022-03-21 21:58:16 +00:00
2022-06-05 10:20:16 +00:00
{{ isDemo ? ' - Demo Version' : '' }}
2022-03-21 21:58:16 +00:00
</span>
<span class="line">
&nbsp;-
{{ version }}
-
2023-03-15 13:24:26 +00:00
<a class="link-unstyled" href="https://github.com/caramelfur/picsur">
2022-09-04 13:01:22 +00:00
Source Code
</a>
2022-03-21 21:58:16 +00:00
</span>
2022-03-12 21:37:45 +00:00
</p>
2022-02-28 20:09:27 +00:00
</footer>