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
5 changes: 4 additions & 1 deletion website/src/app/pages/docs/doc-page.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<div class="flex gap-10 px-4 py-8 sm:px-6 lg:px-10">
<article class="min-w-0 max-w-3xl flex-1">
<article class="min-w-0 flex-1">
<div class="max-w-3xl">
@if (doc().collection === 'challenges' && doc().challengeNumber) {
<header
class="relative mb-10 overflow-hidden rounded-2xl border border-neutral-200 bg-gradient-to-br from-neutral-100 via-white to-white p-6 sm:p-8 dark:border-neutral-800 dark:from-neutral-900 dark:via-neutral-950 dark:to-neutral-950">
Expand Down Expand Up @@ -141,6 +142,8 @@ <h1 class="mb-6 text-3xl font-bold tracking-tight">{{ doc().title }}</h1>
</footer>
}

</div>

@if (!doc().noComments) {
<app-comments [term]="doc().title + ' | Angular Challenges'" />
}
Expand Down
4 changes: 2 additions & 2 deletions website/src/app/pages/docs/try-challenge.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ <h2 class="text-2xl font-bold text-neutral-900 dark:text-white">
</button>
</div>

<!-- 1. One command -->
<!-- 1. Angular challenge CLI -->
<section class="mb-9">
<h3 class="mb-3 text-lg font-semibold text-neutral-900 dark:text-white">
<span class="mr-1.5 text-pink-500">1.</span> One command
<span class="mr-1.5 text-pink-500">1.</span> Angular challenge CLI
<span
class="ml-1.5 rounded bg-pink-600/10 px-2 py-0.5 align-middle text-xs font-medium text-pink-600 dark:text-pink-400"
>recommended</span
Expand Down
Loading