Skip to content

Commit 5fe3648

Browse files
authored
Add "Turing is fast" to splash page (#1375)
* Add "Turing is fast" to splash page * Add hyperlink to paper, add underlines to hyperlinks
1 parent 02fae08 commit 5fe3648

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

docs/assets/css/index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ button:focus {
149149

150150
[data-md-color-primary=red] .md-typeset a {
151151
color: #102738;
152-
text-decoration: none;
152+
text-decoration: underline;
153153
}
154154

155155
.resource-card {

docs/pages/index.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
excerpt: "Turing supports models with discrete parameters and stochastic control flow. Specify complex models quickly and easily."
1111
- title: "Modular"
1212
excerpt: "Turing is modular, written fully in Julia, and can be modified to suit your needs."
13+
- title: "High-performance"
14+
excerpt: "Turing is [fast](https://arxiv.org/abs/2002.02702)."
15+
1316

1417
code-sample:
1518
excerpt: "Turing's modelling syntax allows you to specify a model quickly and easily. Straightforward models can be expressed in the same way as complex, hierarchical models with stochastic control flow."
@@ -101,10 +104,10 @@ <h1><strong>Turing.jl</strong></h1>
101104
<div class="container-fluid">
102105
<div class="row">
103106
{% for f in page.main-feature_row %}
104-
<div class="col-lg-4 main-feature_row">
107+
<div class="col-lg-3 main-feature_row">
105108
<div class="text-content">
106109
<h2>{{ f.title }}</h2>
107-
<div>{{ f.excerpt }}</div>
110+
<div>{{ f.excerpt | markdownify }}</div>
108111
</div>
109112
</div>
110113
{% endfor %}

0 commit comments

Comments
 (0)