Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/_layouts/news-home.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ <h2>{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}<
{% assign news = posts | where: "sneak_preview", "false" %}
{% for post in news %}
{% include archive-single.html %}
{% if post.image %}
<a href="{{ post.link }}"><img src="{{ post.image }}"></a>
{% endif %}
{% endfor %}

{% include paginator.html %}
10 changes: 10 additions & 0 deletions docs/_posts/2020-07-24-deepspeed-webinar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: single
title: "DeepSpeed webinar on August 6th, 2020"
excerpt: ""
categories: news
link: https://note.microsoft.com/MSR-Webinar-DeepSpeed-Registration-Live.html
image: /assets/images/webinar-aug2020.png
new_post: true
date: 2020-07-24 00:00:00
---
Binary file added docs/assets/images/webinar-aug2020.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,13 @@ information [here](https://innovation.microsoft.com/en-us/exploring-ai-at-scale)
{% assign news = site.posts | where: "sneak_preview", "false" %}
{% for post in news limit:5 %}
{% if post.link %}
* [{{ post.date | date: "%Y/%m/%d" }}] [{{ post.title }}]({{ post.link }}) {% if post.new_post %} <span style="color:dodgerblue">**NEW!**</span> {% endif %}
{% if post.image %}
* [{{ post.date | date: "%Y/%m/%d" }}] [ {{ post.title }} {% if post.new_post %} <span style="color:dodgerblue">**NEW!**</span> {% endif %} ![]({{ post.image }}) ]({{ post.link }})
{% else %}
* [{{ post.date | date: "%Y/%m/%d" }}] [{{ post.title }}]({{ post.link }}) {% if post.new_post %} <span style="color:dodgerblue">**NEW!**</span> {% endif %}
{% endif %}
{% else %}
* [{{ post.date | date: "%Y/%m/%d"}}] [{{ post.title }}]({{ post.url }}) {% if post.new_post %} <span style="color:dodgerblue">**NEW!**</span> {% endif %}
* [{{ post.date | date: "%Y/%m/%d"}}] [{{ post.title }}]({{ post.url }}) {% if post.new_post %} <span style="color:dodgerblue">**NEW!**</span> {% endif %}
{% endif %}
{% endfor %}

Expand Down