real initial commit
This commit is contained in:
parent
c0102d8395
commit
860d65fed5
@ -52,6 +52,8 @@
|
|||||||
{{{if useCustomCSS}}}
|
{{{if useCustomCSS}}}
|
||||||
<style>{{customCSS}}</style>
|
<style>{{customCSS}}</style>
|
||||||
{{{end}}}
|
{{{end}}}
|
||||||
|
|
||||||
|
<link rel="stylesheet" type="text/css" href="/style.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="{bodyClass} skin-{{{if bootswatchSkin}}}{bootswatchSkin}{{{else}}}noskin{{{end}}}">
|
<body class="{bodyClass} skin-{{{if bootswatchSkin}}}{bootswatchSkin}{{{else}}}noskin{{{end}}}">
|
||||||
@ -76,7 +78,6 @@
|
|||||||
<a class="navbar-item" href="/bands">Bands</a>
|
<a class="navbar-item" href="/bands">Bands</a>
|
||||||
<a class="navbar-item" href="/authors">Authors</a>
|
<a class="navbar-item" href="/authors">Authors</a>
|
||||||
<a class="navbar-item" href="/forum">Message Board</a>
|
<a class="navbar-item" href="/forum">Message Board</a>
|
||||||
<!-- IF config.loggedIn -->
|
|
||||||
{{{ if config.loggedIn }}}
|
{{{ if config.loggedIn }}}
|
||||||
<div class="navbar-item has-dropdown is-hoverable">
|
<div class="navbar-item has-dropdown is-hoverable">
|
||||||
<a class="navbar-link">Your Stuff</a>
|
<a class="navbar-link">Your Stuff</a>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
{{{ if @first }}}
|
{{{ if @first }}}
|
||||||
<div component="category/posts" class="ps-2 text-xs d-flex flex-column h-100 gap-1">
|
<div component="category/posts" class="ps-2 text-xs d-flex flex-column h-100 gap-1">
|
||||||
<div class="text-nowrap text-truncate">
|
<div class="text-nowrap text-truncate">
|
||||||
<a class="text-decoration-none avatar-tooltip" title="{./user.username}" href="{config.relative_path}/user/{./user.remoteId}">{buildAvatar(posts.user, "18px", true)}</a>
|
<a class="text-decoration-none avatar-tooltip" title="{./user.username}" href="/user/{./user.remoteId}">{buildAvatar(posts.user, "18px", true)}</a>
|
||||||
<a class="permalink text-muted timeago text-xs" href="{config.relative_path}/topic/{./topic.slug}{{{ if ./index }}}/{./index}{{{ end }}}" title="{./timestampISO}" aria-label="[[global:lastpost]]"></a>
|
<a class="permalink text-muted timeago text-xs" href="{config.relative_path}/topic/{./topic.slug}{{{ if ./index }}}/{./index}{{{ end }}}" title="{./timestampISO}" aria-label="[[global:lastpost]]"></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="post-content text-xs text-break line-clamp-sm-2 lh-sm position-relative flex-fill">
|
<div class="post-content text-xs text-break line-clamp-sm-2 lh-sm position-relative flex-fill">
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
<div class="topic-row card clearfix mb-3">
|
<div class="topic-row card clearfix mb-3">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="mb-2">
|
<div class="mb-2">
|
||||||
<a href="{config.relative_path}/user/{./user.remoteId}">{buildAvatar(./user, "24px", true)}</a>
|
<a href="/user/{./user.remoteId}">{buildAvatar(./user, "24px", true)}</a>
|
||||||
<a class="topic-title fw-semibold fs-5" href="{config.relative_path}/post/{encodeURIComponent(posts.pid)}">{./topic.title}</a>
|
<a class="topic-title fw-semibold fs-5" href="{config.relative_path}/post/{encodeURIComponent(posts.pid)}">{./topic.title}</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<meta itemprop="dateModified" content="{lastposttimeISO}">
|
<meta itemprop="dateModified" content="{lastposttimeISO}">
|
||||||
<div itemprop="author" itemscope itemtype="https://schema.org/Person">
|
<div itemprop="author" itemscope itemtype="https://schema.org/Person">
|
||||||
<meta itemprop="name" content="{author.username}">
|
<meta itemprop="name" content="{author.username}">
|
||||||
{{{ if author.remoteId }}}<meta itemprop="url" content="{config.relative_path}/user/{author.remoteId}">{{{ end }}}
|
{{{ if author.remoteId }}}<meta itemprop="url" content="/user/{author.remoteId}">{{{ end }}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="topic-header sticky-top mb-3 bg-body">
|
<div class="topic-header sticky-top mb-3 bg-body">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user