Skip to content

Commit 1a6dc29

Browse files
committed
Cleaned up try post include
1 parent 11c779d commit 1a6dc29

File tree

3 files changed

+38
-47
lines changed

3 files changed

+38
-47
lines changed

_includes/head.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<title>{{ site.title }} {% if page.title %}| {{ page.title }}{% endif %}</title>
99
<meta property="og:title" content="Project Jupyter" />
10-
<meta property="og:description" content="{{ site.description }}">
10+
<meta property="og:description" content="{{ site.description|strip_html }}">
1111
<meta property="og:url" content="https://www.jupyter.org" />
1212
<meta property="og:image" content="https://jupyter.org/assets/homepage.png" />
1313
<link rel="canonical" href="{{ page.url | prepend: site.url }}">

_layouts/try.html

-45
This file was deleted.

try.html

+37-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
---
2-
layout: try
2+
layout: default
33
title: Try Jupyter
4+
description: 'You can try Jupyter out right now, without installing anything. Select an example below and you will get a temporary Jupyter server just for you, running on <a href="https://mybinder.org">mybinder.org</a>. If you like it, you can <a href="https://jupyter.org/install.html">install Jupyter</a> yourself.'
45
permalink: /try
56
---
7+
8+
<div class="post">
9+
<header class="post-header header header-grey">
10+
<div class="container">
11+
<h2>{{ page.title }}</h2>
12+
<p>
13+
{{ page.description }}
14+
</p>
15+
</div>
16+
</header>
17+
18+
<article class="post-content">
19+
<div class="section-white top-section-border">
20+
<div class="container">
21+
<div class="row cardlist">
22+
{%- for item in site.data.try -%}
23+
<a href="{{ item['url'] }}" class="try-link">
24+
<div class="col-lg-4 col-md-6 col-sm-6 cardlist-col">
25+
<div class="cardlist-card try-card">
26+
<div class="card-heading">
27+
<h4>{{ item['title'] }}</h4>
28+
</div>
29+
<div class="card-body text-center">
30+
<img class="try-logo" src="{{ site.baseurl }}/assets/try/{{ item['logo'] }}"/>
31+
<p>{{ item['description'] }}</p>
32+
</div>
33+
</div>
34+
</div>
35+
</a>
36+
{%- endfor -%}
37+
</div>
38+
</div>
39+
</div>
40+
</article>
41+
</div>

0 commit comments

Comments
 (0)