Update base with banner block. Add banner HTML. Update index,company,careers with block for banner (#31647)

This commit is contained in:
Tom Risse 2021-11-23 02:21:31 -08:00 committed by GitHub
parent 7a43a87f5b
commit cd0bebd4b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 25 additions and 0 deletions

View File

@ -8,6 +8,12 @@
{% include "templates/common_fonts.html" %}
{% endblock %}
{% block banner %}
{% include "templates/global/banner.html" %}
{% endblock %}
{% block nav %}
{% include "templates/global/nav.html" %}

View File

@ -8,6 +8,12 @@
{% include "templates/common_fonts.html" %}
{% endblock %}
{% block banner %}
{% include "templates/global/banner.html" %}
{% endblock %}
{% block nav %}
{% include "templates/global/nav.html" %}

View File

@ -39,6 +39,12 @@
}</script>
{% endblock %}
{% block banner %}
{% include "templates/global/banner.html" %}
{% endblock %}
{% block nav %}
{% include "templates/global/nav.html" %}

View File

@ -6,6 +6,7 @@
{% include "templates/common_css.html" %}
</head>
<body dir="{{ direction or 'ltr' }}" {{ extra_body_attrs }}>
{% block banner %}{% endblock %}
{% block nav %}{% endblock %}
<div class="page">
{% block content %}{% endblock %}

View File

@ -0,0 +1,6 @@
<div class="banner bg-light">
<div class="container">
<p class="text-center mb-0 mx-auto pt-1 pb-1">{{ _('ClickHouse v21.12 is coming soon! Add the Dec 16 Release Webinar to your calendar') }} <a
href="https://calendar.google.com/event?action=TEMPLATE&dates=20211216T170000Z%2F20211216T180000Z&text=ClickHouse%20v21.12%20Release%20Webinar&location=https%3A%2F%2Fzoom.us%2Fj%2F98125358968%3Fpwd%3DNmVtNFFZN254RFVreDBGMzF4ZXVJZz09&details=Connect%20with%20ClickHouse%20experts%20and%20test%20out%20the%20newest%20features%20and%20performance%20gains%20in%20the%20v21.12%20release.%0A%0APlease%20click%20this%20URL%20to%20join.%20https%3A%2F%2Fzoom.us%2Fj%2F98125358968%3Fpwd%3DNmVtNFFZN254RFVreDBGMzF4ZXVJZz09%0A%0APasscode%3A%20116407%0A%0AMeeting%20ID%3A%20943%200124%201586%20Passcode%3A%20733594%0A%0AOne%20tap%20mobile%20%2B16699009128%2C%2C94301241586%23%2C%2C%2C%2C%2A733594%23%20US%20%28San%20Jose%29%0A%0AInternational%20numbers%20available%3A%20https%3A%2F%2Fzoom.us%2Fu%2Fa9MnEEn8i" target="_blank">here</a></p>
</div>
</div>