We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 039b853 commit db43d67Copy full SHA for db43d67
src/pages/dev/[username].astro
@@ -30,9 +30,11 @@ const fileData = await getRemoteFileData(
30
if (fileData) {
31
content = marked.parse(fileData);
32
}
33
+
34
+const noIndex = !('headline' in members_data[params.username])
35
---
36
-<ProfileLayout profile={members_data[params.username]} activeTab="profile" pageTitle="Perfil">
37
+<ProfileLayout profile={members_data[params.username]} activeTab="profile" pageTitle="Perfil" noIndex={noIndex}>
38
<article
39
class="my-5 prose-sm mx-auto px-10 py-6 prose-h2:mt-3 overflow-auto prose-a:underline prose-ul:list-disc prose-img:m-0 prose-img:inline break-words"
40
set:html={content}
0 commit comments