offline-twitter/internal/webserver/tpl/offline_timeline.tpl
Alessio 8410182129 Big front-end refactor to make CSS management more tractable
- Convert most CSS class names to BEM style
- Improve a significant amount of layouts / UI bugs
- Probably add a bunch of UI bugs
2024-04-05 15:49:19 -07:00

19 lines
562 B
Smarty

{{define "title"}}Timeline{{end}}
{{define "main"}}
<div class="timeline-header">
<div class="tabs row">
<a class="tabs__tab {{if (eq .ActiveTab "User feed")}}tabs__tab--active{{end}}" href="/timeline">
<span class="tabs__tab-label">User feed</span>
</a>
<a class="tabs__tab {{if (eq .ActiveTab "Offline")}}tabs__tab--active{{end}}" href="/timeline/offline">
<span class="tabs__tab-label">Offline timeline</span>
</a>
</div>
</div>
<div class="timeline">
{{template "timeline" .Feed}}
</div>
{{end}}