This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
import Nav from '../components/Nav.svelte'; | |
export let segment; | |
</script> | |
<Nav {segment}/> | |
<main> | |
<slot></slot> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('wp_grid_builder_map/marker_content', | |
function( $content, $marker ) { | |
ob_start(); | |
$url = wp_get_attachment_url( get_post_thumbnail_id() ); | |
$excerpt = get_the_excerpt(); | |
if ( $url ) { | |
echo '<div class="wpgb-map-marker-img">'; | |
echo '<div style="background-image:url(' . esc_url( $url ) . ');"></div>'; | |
echo '</div>'; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>In HTML, <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Block-level_elements">block-level elements</a> such as headers, paragraphs, and DIVs, occupy 100% of the width of their parent element. Their height depends on how much content they have inside.</p> | |
<h2 id="headings" tabindex="-1">Headings</h2> | |
<p>Heading font weights have been set to <code>normal</code> (default). You can override this for all headings in the SCSS default variables, or add a bold weight yourself on a per-heading or per-word basis, for emphasis.</p> | |
<p>Same as with paragraphs, headings have zero top margin while the bottom margin is set as equal to 3 <a href="/codebase-5/docs/1-getting-started/element-grid">element grid</a> units, or <em>one line-height of the default text size</em> (1.5rem) – thereby leaving an “empty line” gap between paragraphs and headings.</p> | |
<p>Heading sizes, weights and line heights are set using three SCSS maps in the default variables file – you can control the rhythm of each from there.</p> | |
<p>B |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* (Bricks adds this – it's NOT overridden by Codebase) */ | |
/* headings */ | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6 { | |
text-rendering: optimizeLegibility; | |
margin: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"key": "group_636145701ece0", | |
"title": "Experience-Skill Relationship", | |
"fields": [ | |
{ | |
"key": "field_636148bd139e0", | |
"label": "Experience Skill Relationship", | |
"name": "experience-skill-relationship", | |
"aria-label": "", |
OlderNewer