Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
8 changes: 5 additions & 3 deletions _layouts/blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
---
<div class="row align-items-start justify-content-center my-5">
<div class="col-lg-3 mb-5" role="complementary" aria-labelledby="page-title">
<div class="card px-2 mx-2">
<div class="card shadow px-2 mx-2">
<div class="card-body">
<h1 class="fs-3" class="card-title" id="page-title">{{ page.title }}</h1>
<div class="container g-0 mt-4">
Expand Down Expand Up @@ -34,12 +34,14 @@ <h1 class="fs-3" class="card-title" id="page-title">{{ page.title }}</h1>
{% else %}
<div class="col-md align-self-center">
{% endif %}
<div class="card-body mx-3 my-2">
<div class="card-header">
<h2 class="card-title fs-4">
<a class="page-link" href="{{ post.url | absolute_url }}">
<a href="{{ post.url | absolute_url }}">
{{ post.title | escape }}
</a>
</h2>
</div>
<div class="card-body mx-3 my-2">
<p class="card-text">{{ post.excerpt | markdownify }}</p>
<p class="card-text text-end"><small class="text-secondary">{{ post.date | date: date_format }}</small></p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{% seo %}
{% feed_meta %}
</head>
<body class="d-flex flex-column min-vh-100" data-bs-theme="light">
<body class="d-flex flex-column min-vh-100 default-layout" data-bs-theme="light">
{% if jekyll.environment == "development" %}
<div class="dev-watermark">Development Mode</div>
{% endif %}
Expand Down
12 changes: 11 additions & 1 deletion _sass/kroxylicious.scss
Original file line number Diff line number Diff line change
Expand Up @@ -343,4 +343,14 @@ b.conum * {
background-size:contain;
border: none;
opacity: 0;
}
}

.default-layout > .container-fluid.px-0 > .row {
margin-left: 0;
margin-right: 0;
}

.card-title {
margin-top: calc(var(--#{$prefix}card-title-spacer-y) / 2);
margin-bottom: calc(var(--#{$prefix}card-title-spacer-y) / 2);
}
2 changes: 1 addition & 1 deletion _use_cases/schema_validation_and_enforecement.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ even if producing applications are misconfigured.

The filter currently supports two modes of operation:

1. Schema validation[^3] validates the content of the record against a schema. Use this for topics which have an entry in
1. Schema validation[^1] validates the content of the record against a schema. Use this for topics which have an entry in
the Schema Registry.
2. SyntacticallyCorrectJson validation ensures the producer is producing messages that contain syntactically valid JSON.
Use for topics which do not have registered schemas.
Expand Down