Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Content / Add calls to action #68

Merged
merged 3 commits into from
Jan 8, 2023
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
18 changes: 17 additions & 1 deletion pages/blog/index.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
<template>
<Container>
<Container class="my-12">
<!-- <header class="m-auto text-center prose">
<h1>Blog #NLP</h1>
<a class="text-md" target="_blank"
href="https://github.com/somosnlp/somosnlp.org/blob/main/CONTRIBUTING.md">
¿Qué quieres compartir con la comunidad?
</a>
</header>
<hr class="mx-auto mt-8 mb-12 prose" /> -->
<BlogList />
<hr class="mx-auto mt-8 mb-12 prose" />
<footer class="m-auto text-center prose">
<p>¿Te gustaría compartir algo con la comunidad?</p>
<a class="text-md" target="_blank"
href="https://github.com/somosnlp/somosnlp.org/blob/main/CONTRIBUTING.md#-publicar-un-art%C3%ADculo-en-el-blog">
Publica en nuestro blog
</a>
</footer>
</Container>
</template>
4 changes: 4 additions & 0 deletions pages/core-team.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ title: Equipo de Somos NLP
---

<CoreTeamList />

---

¿Te gustaría colaborar? [Contáctanos](mailto:[email protected]), nos encantará poder contar contigo 🤩
7 changes: 7 additions & 0 deletions src/components/BlogPost.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,13 @@ const tweetUrl = computed(() => `https://twitter.com/intent/tweet?text=${encodeU
<carbon:logo-github />
</IconButtonLink>
</div>
<div v-if="$route.path.startsWith('/blog')" class="text-md text-center">
<hr class="mt-8 mb-12" />
<a target="_blank"
href="https://github.com/somosnlp/somosnlp.org/blob/main/CONTRIBUTING.md#-publicar-un-art%C3%ADculo-en-el-blog">
¿Te gustaría publicar en nuestro blog?
</a>
</div>
</footer>
</Container>
</template>