diff --git a/_layouts/product.html b/_layouts/product.html index 697174e73075..4cf01857f131 100644 --- a/_layouts/product.html +++ b/_layouts/product.html @@ -2,13 +2,34 @@ layout: default --- -{% if page.iconUrl %} - -{% else %} - -{% endif %} +
+

{{ page.title }}

+ +
+ + + + {% for tag in page.tags %}{{ tag }}{% endfor %} + +
+
-
{{content | extract_element:'blockquote' | first }}
+
+ {%- assign iconUrl = page.iconUrl %} + {%- assign iconDescription = page.title %} + {%- unless iconUrl %} + {%- assign iconDescription = 'No product' %} + {%- assign iconUrl = '/assets/default-product-logo.svg' | relative_url %} + {%- endunless %} + + + {{content | extract_element:'blockquote' | first | extract_element:'p' }} +
{% if page.releaseImage %} Release Schedule Image Gantt Chart for {{page.title}} @@ -174,8 +195,3 @@ See the API Documentation for more information. You can subscribe to the iCalendar feed at /calendar{{page.permalink}}.ics.

- -

-This page was last updated on {{ page.last_modified_at | date_to_long_string }}. -{%if page.auto %}Latest releases are automatically updated.{% endif %} -

diff --git a/_sass/custom/custom.scss b/_sass/custom/custom.scss index 20bd689e677b..ef533b2312b1 100644 --- a/_sass/custom/custom.scss +++ b/_sass/custom/custom.scss @@ -23,8 +23,9 @@ a { // Icons are 50x50, so this adds another 10 pixels min-height: 60px; } -.productlogo { +.product-logo { float: left; + margin-right: .5em; } .bg-light { background-color: #f8f9fa !important; @@ -74,3 +75,7 @@ body { margin-bottom: -.3rem; } } + +.align-items-center { + align-items: center; +}