aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/profile-tabs.html
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2022-10-13 00:29:30 -0400
committertdro <tdro@noreply.example.com>2022-10-13 00:29:30 -0400
commitc9c54c0a99b775649beb78328b49ebe954984d11 (patch)
tree3e3eec93b18ec09507300567e4c94c7149a54365 /themes/default/layouts/partials/profile-tabs.html
parentea2ea34bf15a70d3515dd9f0713d942faefb357d (diff)
downloadcanory-c9c54c0a99b775649beb78328b49ebe954984d11.tar.gz
canory-c9c54c0a99b775649beb78328b49ebe954984d11.tar.bz2
canory-c9c54c0a99b775649beb78328b49ebe954984d11.zip
themes/default/layouts/partials/profile-tabs: tab-list -> tab-bar
Add more specificity to nav elements and set up for adding more items to tab bar.
Diffstat (limited to 'themes/default/layouts/partials/profile-tabs.html')
-rw-r--r--themes/default/layouts/partials/profile-tabs.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/themes/default/layouts/partials/profile-tabs.html b/themes/default/layouts/partials/profile-tabs.html
index e04cac7..e5c0385 100644
--- a/themes/default/layouts/partials/profile-tabs.html
+++ b/themes/default/layouts/partials/profile-tabs.html
@@ -1,7 +1,7 @@
{{- $author := partial "function-authors-data.html" . -}}
-<tab-list>
- <aside>
+<tab-bar>
+ <nav>
<a href="{{ .Site.BaseURL }}/{{ $author.user }}">Messages</a>
<a href="{{ .Site.BaseURL }}/{{ $author.user }}/feeds/">Feeds</a>
<a href="{{ .Site.BaseURL }}/{{ $author.user }}/media/">Media</a>
@@ -9,5 +9,5 @@
{{- if .Site.BuildDrafts }}
<a data-draft href="{{ .Site.BaseURL }}/{{ $author.user }}/drafts/">Drafts</a>
{{- end }}
- </aside>
-</tab-list>
+ </nav>
+</tab-bar>