Skip to content
GitLab
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Reproducible Builds
reproducible-website
Compare revisions
0c8e0b0e9da10e06e35987d324ea94c146dcb4e2...762d822a119dc53b4b13b6ea312d5e1e47d932f8
Commits (2)
indeterministic -> nondeterministic
· 86c14eb4
Chris Lamb
authored
Dec 21, 2018
86c14eb4
Put the projects in a nice card grid.
· 762d822a
Chris Lamb
authored
Dec 21, 2018
762d822a
Hide whitespace changes
Inline
Side-by-side
_blog/posts/191.md
View file @
762d822a
...
...
@@ -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) (
i
ndeterministic asm / cmpq)
* [rust](https://github.com/rust-lang/rust/issues/57041) (
no
ndeterministic asm / cmpq)
who.md
View file @
762d822a
...
...
@@ -24,16 +24,23 @@ their users.
## Projects
{% for project in site.data.projects %}
<a
name=
"{{ project.name }}"
></a>
### [{{ project.name }}]({{ project.url }})

{% for resource in project.resources %}
*
[
{{ resource.name }}
](
{{
resource.url }})
{% endfor %}
<br>
{% endfor %}
<div
class=
"row bg-light p-md-5 p-sm-3 pt-5 pb-5"
>
{% for project in site.data.projects %}
<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 %}
<a href="{{ resource.url }}">{{ resource.name }}</a>{% unless forloop.last %} •{% endunless %}
{% endfor %}
</p>
</div>
</div>
</div>
{% endfor %}
</div>