Skip to content

Commit 221f9c9

Browse files
authored
Merge pull request #19 from mlbench/Polish-Website
Polish website
2 parents b940aa1 + d94577f commit 221f9c9

14 files changed

Lines changed: 187 additions & 782 deletions

_data/authors.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ r_grubenmann:
55
m_jaggi:
66
name: M. Jaggi
77
web: https://mlo.epfl.ch/
8-
8+
9+
e_hoelzl:
10+
name: Edoardo Hölzl
11+
web: https://github.com/ehoelzl
12+
913
m_milenkoski:
1014
name: M. Milenkoski
11-
web: https://github.com/mmilenkoski
15+
web: https://github.com/mmilenkoski

_debug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: 'MLBench '
99
tagline: 'Distributed Machine Learning Benchmark'
1010
description: 'A public and reproducible collection of reference implementations and benchmark suite for <u>distributed machine learning</u> algorithms, frameworks and systems.'
1111
url: http://127.0.0.1:4000
12-
base_url: /
12+
baseurl: /
1313

1414
debug: true
1515
future: true

_drafts/2012-02-06-whats-jekyll.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

_drafts/2012-02-07-example-content.md

Lines changed: 0 additions & 139 deletions
This file was deleted.

_drafts/2013-12-28-introducing-hyde.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

_layouts/post.html

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,32 @@ <h1 class="post-title">{{ page.title }}</h1>
2222
<div class="related">
2323
<h2>Related Posts</h2>
2424
<ul class="related-posts">
25-
{% for post in site.related_posts limit:3 %}
26-
<li>
27-
<h3>
28-
<a href="{{ post.url }}">
29-
{{ post.title }}
30-
<small>{{ post.date | date_to_string }}</small>
31-
</a>
32-
</h3>
33-
</li>
25+
{% assign hasSimilar = '' %}
26+
{% for post in site.related_posts %}
27+
{% assign postHasSimilar = false %}
28+
{% for tag in post.tags %}
29+
{% for thisTag in page.tags %}
30+
{% if postHasSimilar == false and hasSimilar.size < 6 and post != page and tag == thisTag %}
31+
{% if hasSimilar.size == 0 %}
32+
<h4>Similar Posts</h4>
33+
<ul>
34+
{% endif %}
35+
<li class="relatedPost">
36+
<a href="{{ site.url }}{{ post.url }}">{{ post.title }}
37+
{% if post.series %}
38+
(Series: {{ post.series }})
39+
{% endif %}
40+
</a>
41+
</li>
42+
{% capture hasSimilar %}{{ hasSimilar }}*{% endcapture %}
43+
{% assign postHasSimilar = true %}
44+
{% endif %}
45+
{% endfor %}
46+
{% endfor %}
3447
{% endfor %}
48+
{% if hasSimilar.size > 0 %}
49+
</ul>
50+
{% endif %}
3551
</ul>
3652
</div>
3753

_posts/2018-09-07-introducing-mlbench.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ Our project is open, vendor independent and backed by academic standards, and we
4343

4444
### Getting Started
4545

46-
Please refer to our [getting-started tutorial]({% post_url 2018-09-10-tutorial %}) on how to set up and start using MLBench.
46+
For installation and quickstart, please refer to the [documentation](https://mlbench.readthedocs.io/en/latest/installation.html#installation).

_posts/2018-09-10-tutorial.md

Lines changed: 0 additions & 128 deletions
This file was deleted.

0 commit comments

Comments
 (0)