Skip to content
Commits on Source (2)
......@@ -28,4 +28,4 @@ Packages reviewed and fixed, and bugs filed
* [hpx](https://build.opensuse.org/request/show/660040) (use [upstream patch](https://github.com/STEllAR-GROUP/hpx/pull/3585))
* [python-jupyter_imatlab_kernel](https://build.opensuse.org/request/show/660055) (do not let pip embed a random tmp path)
* [rust](https://github.com/rust-lang/rust/issues/57041) (indeterministic asm / cmpq)
* [rust](https://github.com/rust-lang/rust/issues/57041) (nondeterministic asm / cmpq)
......@@ -24,16 +24,23 @@ their users.
## Projects
<div class="row bg-light p-md-5 p-sm-3 pt-5 pb-5">
{% for project in site.data.projects %}
<a name="{{ project.name }}"></a>
### [{{ project.name }}]({{ project.url }})
![]({{ project.logo | prepend: "/images/logos/" | prepend: site.baseurl }}#right)
<div class="col-xl-4 col-sm-6 col-xs-12 mb-4">
<div class="card" name="{{ project.name }}">
<a href="{{ project.url }}" >
<img class="card-img-top p-5" src="{{ project.logo | prepend: "/images/logos/" | prepend: site.baseurl }}" alt="{{ project.name }}">
</a>
<div class="card-body">
<h4 class="card-title"><a href="{{ project.url }}">{{ project.name }}</a></h4>
<p class="card-text">
{% for resource in project.resources %}
* [{{ resource.name }}]({{ resource.url }})
<a href="{{ resource.url }}">{{ resource.name }}</a>{% unless forloop.last %} &bull;{% endunless %}
{% endfor %}
<br>
</p>
</div>
</div>
</div>
{% endfor %}
</div>