Skip to content

Commit 76b00da

Browse files
[Landing] Minor fixes
1 parent 952d3d4 commit 76b00da

File tree

4 files changed

+74
-3
lines changed

4 files changed

+74
-3
lines changed

docs/assets/stylesheets/landing.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,8 @@
251251
vertical-align: middle;
252252
}
253253

254-
.md-typeset .md-button .icon, .md-typeset .md-link .icon {
254+
.md-typeset .md-button .icon,
255+
.md-typeset .md-post__action .icon {
255256
display: inline-block;
256257
position: relative;
257258
width: 15px;

docs/blog/posts/nvidia-and-amd-on-vultr.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ description: "Introducing integration with Vultr: The new integration allows Vul
55
slug: nvidia-and-amd-on-vultr.md
66
image: https://github.com/dstackai/static-assets/blob/main/static-assets/images/dstack-vultr.png?raw=true
77
categories:
8+
- Cloud fleets
89
- NVIDIA
910
- AMD
1011
---

docs/overrides/home.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ <h2>Efficient cloud GPU provisioning and utilization</h2>
159159
</span>
160160

161161
<span class="supported_clouds_item">
162-
<img width="43" style="margin: -3px 0" src="/assets/images/nebius-logo.svg">
162+
<img width="43" style="margin: -2px 0" src="/assets/images/nebius-logo.svg">
163163
<div class="plans_card__service-name">Nebius</div>
164164
</span>
165165

@@ -179,7 +179,7 @@ <h2>Efficient cloud GPU provisioning and utilization</h2>
179179
</span>
180180

181181
<span class="supported_clouds_item">
182-
<img width="39" src="/assets/images/tensordock-logo.svg">
182+
<img width="38" src="/assets/images/tensordock-logo.svg">
183183
<div class="plans_card__service-name">TensorDock</div>
184184
</span>
185185

docs/overrides/partials/post.html

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{#-
2+
This file was automatically generated - do not edit
3+
-#}
4+
<article class="md-post md-post--excerpt">
5+
<header class="md-post__header">
6+
{% if post.authors %}
7+
<nav class="md-post__authors md-typeset">
8+
{% for author in post.authors %}
9+
<span class="md-author">
10+
<img src="{{ author.avatar | url }}" alt="{{ author.name }}">
11+
</span>
12+
{% endfor %}
13+
</nav>
14+
{% endif %}
15+
<div class="md-post__meta md-meta">
16+
<ul class="md-meta__list">
17+
<li class="md-meta__item">
18+
<time datetime="{{ post.config.date.created }}">
19+
{{- post.config.date.created | date -}}
20+
</time>
21+
{#- Collapse whitespace -#}
22+
</li>
23+
{% if post.categories %}
24+
<li class="md-meta__item">
25+
{{ lang.t("blog.categories.in") }}
26+
{% for category in post.categories %}
27+
<a href="{{ category.url | url }}" class="md-meta__link">
28+
{{- category.title -}}
29+
</a>
30+
{%- if loop.revindex > 1 %}, {% endif -%}
31+
{% endfor -%}
32+
</li>
33+
{% endif %}
34+
{% if post.config.readtime %}
35+
{% set time = post.config.readtime %}
36+
<li class="md-meta__item">
37+
{% if time == 1 %}
38+
{{ lang.t("readtime.one") }}
39+
{% else %}
40+
{{ lang.t("readtime.other") | replace("#", time) }}
41+
{% endif %}
42+
</li>
43+
{% endif %}
44+
{% if post.config.pin %}
45+
<span class="md-pin"></span>
46+
{% endif %}
47+
</ul>
48+
{% if post.config.draft %}
49+
<span class="md-draft">
50+
{{ lang.t("blog.draft") }}
51+
</span>
52+
{% endif %}
53+
</div>
54+
</header>
55+
<div class="md-post__content md-typeset">
56+
{{ post.content }}
57+
{% if post.more %}
58+
<nav class="md-post__action">
59+
<a href="{{ post.url | url }}">
60+
<span>{{ lang.t("blog.continue") }}</span>
61+
<span class="icon"><svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg"><path d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z" fill-rule="nonzero" fill="currentColor" class="fill-main"></path></svg></span>
62+
</a>
63+
</nav>
64+
{% endif %}
65+
{% if post.config.pin %}
66+
<hr>
67+
{% endif %}
68+
</div>
69+
</article>

0 commit comments

Comments
 (0)