Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sites/main-site/src/layouts/NewsletterLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ const pipelinesAndProposals: { title: string; url: string; sub: string; labels:
/>
<p class="nl-muted" style="margin: 12px 0 0; font-size: 18px; color: #666666;">
1st {monthName}
{year}
{" "}{year}
</p>
</td>
</tr>
Expand Down
6 changes: 4 additions & 2 deletions sites/main-site/src/pages/newsletter/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ const latest = months[0];
<a
href="https://www.linkedin.com/newsletters/nf-core-7474718981564706816/"
target="_blank"
rel="noopener"><i class="fab fa-linkedin me-1"></i>LinkedIn</a
rel="noopener"
>
<i class="fab fa-linkedin mx-1"></i>LinkedIn</a
>.
</p>
</div>
Expand All @@ -44,7 +46,7 @@ const latest = months[0];
{
latest && (
<div class="alert alert-success mb-4">
<strong>Latest newsletter:</strong>
<strong>Latest newsletter: </strong>
<a href={`/newsletter/${latest.year}/${String(latest.month).padStart(2, "0")}`}>
{getMonthName(latest.month)} {latest.year}
</a>
Expand Down
Loading