Forgot to save yesterday. Mostly data and jupyter changes. Some notes.

This commit is contained in:
Norm Rasmussen
2023-04-17 08:54:10 -04:00
parent c88ffb4004
commit c5b0297704
54 changed files with 6669 additions and 42 deletions

View File

@ -0,0 +1,58 @@
{% include "header" %}
<main class="np-main np-search np-subpage-container np-max-width">
<div class="np-resource-title">
{% t .title %}
</div>
<div class="np-search-header">
<div class="np-resource-subtitle">
{% t .showing %}
<span class="np-resource-subtitle-number">{{ results.count }}</span>
{% t .results_for %}
<span class="np-button-color">"{{ results.term }}"</span>
</div>
{% capture label %}{% t shared.filters.by_type %}{% endcapture %}
{%
include "filter_dropdown",
filters: results.filters,
key: "type",
label: label
%}
</div>
{% if results.items.any? %}
{% render "search_result" for results.items as result %}
{% else %}
{% include "search_zero_state" %}
{% endif %}
</main>
{% include "footer" %}
<style>
.np-search-result {
height: auto;
min-height: auto;
}
.np-search-result a {
text-decoration: none;
}
.np-search-result .np-card-content {
flex-direction: row;
padding:0;
}
.np-search-result-snippet {
overflow: hidden;
font-size: 1rem;
line-height: 1.5rem;
}
.np-search-result-image {
margin-right:12px;
}
@media (min-width:768px) {
.np-search-result-image {
margin-right:24px;
}
}
</style>