layouts: insert first openring data

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-08-12 22:06:15 +05:30
parent 0352ad45ba
commit 05f6395bff
1 changed files with 64 additions and 0 deletions

View File

@ -0,0 +1,64 @@
<section class="webring">
<h3>Articles from blogs I follow around the net</h3>
<section class="articles">
<div class="article">
<h4 class="title">
<a href="https://fasterthanli.me/articles/surviving-rust-async-interfaces" target="_blank" rel="noopener">Surviving Rust async interfaces</a>
</h4>
<p class="summary">
I used to be afraid of async Rust. It&#39;s easy to get into trouble!
But thanks to the work done by the whole community, async Rust is getting
easier to use every week. One project I think is doing particularly great
work in this area is async-std…</p>
<small class="source">
via <a href="https://fasterthanli.me">fasterthanli.me</a>
</small>
<small class="date">August 9, 2020</small>
</div>
<div class="article">
<h4 class="title">
<a href="https://stjepang.github.io/2020/04/03/why-im-building-a-new-async-runtime.html" target="_blank" rel="noopener">Why Im building a new async runtime</a>
</h4>
<p class="summary">Rust has a relatively new async/await system, and one of its peculiarities is that it doesnt have a runtime baked in like many other programming languages do. To write an async program, you have to pick a library like async-std or tokio, or implement a r…</p>
<small class="source">
via <a href="https://stjepang.github.io/">Stjepans blog</a>
</small>
<small class="date">April 3, 2020</small>
</div>
</section>
<p class="attribution">
Generated by
<a href="https://git.sr.ht/~sircmpwn/openring">openring</a>
</p>
</section>
<style>
.webring .articles {
display: flex;
flex-wrap: wrap;
margin: -0.5rem;
}
.webring .title {
margin: 0;
}
.webring .article {
flex: 1 1 0;
display: flex;
flex-direction: column;
margin: 0.5rem;
padding: 0.5rem;
background: #eee;
min-width: 10rem;
}
.webring .summary {
font-size: 0.8rem;
flex: 1 1 0;
}
.webring .attribution {
text-align: right;
font-size: 0.8rem;
color: #555;
}
</style>