Skip to content

Commit

Permalink
Jan reccurring calls
Browse files Browse the repository at this point in the history
  • Loading branch information
sanketbakshi committed Dec 17, 2024
1 parent a618ae9 commit 1909218
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 3 deletions.
71 changes: 71 additions & 0 deletions blog/_layouts/custompage.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
---
layout: default
---

{% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
{% include page__hero.html %}
{% elsif page.header.video.id and page.header.video.provider %}
{% include page__hero_video.html %}
{% endif %}

{% if page.url != "/" and site.breadcrumbs %}
{% unless paginator %}
{% include breadcrumbs.html %}
{% endunless %}
{% endif %}

<div style="background-color: #fff;">
<article class="page" itemscope itemtype="https://schema.org/CreativeWork" style="background-color: #fff;">

<!--
<section class="page__content" itemprop="text">-->
<div>
{{ content }}

</div>
<!--</section> -->

<footer class="page__meta">
{% if site.data.ui-text[site.locale].meta_label %}
<h4 class="page__meta-title">{{ site.data.ui-text[site.locale].meta_label }}</h4>
{% endif %}
{% include page__taxonomy.html %}
<!-- {% include page__date.html %} -->
</footer>

{% if page.share %}{% include social-share.html %}{% endif %}

{% include post_pagination.html %}
</div>

{% if jekyll.environment == 'production' and site.comments.provider and page.comments %}
{% include comments.html %}
{% endif %}
</article>


{% comment %}<!-- only show related on a post page when `related: true` -->{% endcomment %}
{% if page.id and page.related and site.related_posts.size > 0 %}
<div class="page__related">
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
<div class="grid__wrapper">
{% for post in site.related_posts limit:4 %}
{% include archive-single.html type="grid" %}
{% endfor %}
</div>
</div>
{% comment %}<!-- otherwise show recent posts if no related when `related: true` -->{% endcomment %}
{% elsif page.id and page.related %}
<div class="page__related">
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
<div class="grid__wrapper">
{% for post in site.posts limit:4 %}
{% if post.id == page.id %}
{% continue %}
{% endif %}
{% include archive-single.html type="grid" %}
{% endfor %}
</div>
</div>
{% endif %}
</div>
11 changes: 8 additions & 3 deletions blog/_pages/webinars.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
---
title: "Webinars"
layout: splash
layout: custompage


permalink: /webinars/
date: 2024-12-03T11:48:41-04:00
header:
overlay_color: "#000000"
overlay_color: "#000"
overlay_image:
excerpt: ""

intro:
- excerpt: 'We are excited to invite you to our new public community calls for Azure Kubernetes Service (AKS). These sessions will be a great opportunity to discuss the product roadmap, witness demos of new features, provide feedback, and get your product questions answered. '
feature_row2:
- image_path: /assets/webinars/Jan2025/Jan2025-Square.png
- image_path: /assets/webinars/Jan2025/Jan2025-Vert.png

alt: "AKS Monthly Roadmap Update - Jan 2025"
title: "AKS Monthly Roadmap Update - Jan 2025"
excerpt: "<strong>When:</strong>&nbsp;Jan 15th, 8 AM Pacific Time<br><br>
Expand All @@ -26,6 +30,7 @@ feature_row2:

feature_row3:
- image_path: /assets/webinars/Dec2024/2024 announcements.png

alt: "AKS Feature Announcements from KubeCon & Ignite"
title: "AKS Feature Announcements from KubeCon & Ignite"
excerpt: "<strong>When:</strong>&nbsp;December 11th, 8 AM Pacific Time<br><br>
Expand Down

0 comments on commit 1909218

Please sign in to comment.