Skip to content

Commit

Permalink
fix button links
Browse files Browse the repository at this point in the history
because I could figure out what ben meant even though
he was not able to use his words to articulate it,
...

Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Dec 30, 2022
1 parent bcad11e commit 2f9f4e1
Showing 1 changed file with 10 additions and 22 deletions.
32 changes: 10 additions & 22 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
---

<div class="cards">
<div class="card" style="cursor:pointer" data-url="https://hpc-social.github.io/personal-blog/">
<a href="https://hpc-social.github.io/personal-blog/"><div class="card" data-url="https://hpc-social.github.io/personal-blog/">
<span data-url="https://hpc-social.github.io/personal-blog/" class="card-title">Personal Blog Aggregator</span>
<span data-url="https://hpc-social.github.io/personal-blog/" class="card-description"> the "soul" of the HPC community - HPCers who are personally invested in the
minutiae of the work they are doing, the projects they are working on with
some content about their culture and pet pictures :D - things that we all
find in common and share and talk about.</span>
<p><a href="https://hpc.social.github.io/personal-blog/feed.xml" target="_blank"><button class="btn">rss</button></a>
<a href="https://hpc.social.github.io/personal-blog/atom.xml" target="_blank"><button class="btn">atom</button></a>
<a href="https://hpc.social.github.io/personal-blog/feed.json" target="_blank"><button class="btn">json</button></a></p>
<p><a href="https://hpc.social/personal-blog/feed.xml" target="_blank"><button class="btn">rss</button></a>
<a href="https://hpc.social/personal-blog/atom.xml" target="_blank"><button class="btn">atom</button></a>
<a href="https://hpc.social/personal-blog/feed.json" target="_blank"><button class="btn">json</button></a></p>

</div>
<div class="card" style="cursor:pointer" data-url="https://hpc-social.github.io/community-blog/">
</div></a>
<a href="https://hpc-social.github.io/community-blog/"><div class="card">
<span data-url="https://hpc-social.github.io/community-blog/" class="card-title">Community Blog Aggregator</span>
<span data-url="https://hpc-social.github.io/community-blog/" class="card-description">Content from people who represent
projects, ecosystems, or governance boards that talk about specific
Expand All @@ -24,22 +24,10 @@
infrastructure, and other things that are neutrally branded. Discussion of
branded topics like CUDA, SYCL, and oneAPI are ok - discussions about
hardware are ok. Product announcements are not ok especially.
</span>
</span></a>

<p><a href="https://hpc.social.github.io/community-blog/feed.xml" target="_blank"><button class="btn">rss</button></a>
<a href="https://hpc.social.github.io/community-blog/atom.xml" target="_blank"><button class="btn">atom</button></a>
<a href="https://hpc.social.github.io/community-blog/feed.json" target="_blank"><button class="btn">json</button></a></p>
<p><a href="https://hpc.social/community-blog/feed.xml" target="_blank"><button class="btn">rss</button></a>
<a href="https://hpc.social/community-blog/atom.xml" target="_blank"><button class="btn">atom</button></a>
<a href="https://hpc.social/community-blog/feed.json" target="_blank"><button class="btn">json</button></a></p>
</div>
</div>

<script>

document.addEventListener('click', function (event) {
event.preventDefault();
url = event.target.getAttribute('data-url');
if (url) {
window.open(url, "_blank");
}
}, false);

</script>

0 comments on commit 2f9f4e1

Please sign in to comment.