wordpress-menu #56
File diff suppressed because one or more lines are too long
|
@ -8,13 +8,11 @@
|
|||
}
|
||||
.hero {
|
||||
@include breakpoint(small) {
|
||||
aside {
|
||||
nav {
|
||||
.dropdown.menu > li > a {
|
||||
padding: $global-menu-padding/2;
|
||||
padding: $global-menu-padding/2 $global-menu-padding/2;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@include breakpoint(medium) {
|
||||
aside {
|
||||
|
|
|
@ -924,9 +924,9 @@
|
|||
}
|
||||
},
|
||||
"caniuse-lite": {
|
||||
"version": "1.0.30001236",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001236.tgz",
|
||||
"integrity": "sha512-o0PRQSrSCGJKCPZcgMzl5fUaj5xHe8qA2m4QRvnyY4e1lITqoNkr7q/Oh1NcpGSy0Th97UZ35yoKcINPoq7YOQ==",
|
||||
"version": "1.0.30001312",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001312.tgz",
|
||||
"integrity": "sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==",
|
||||
"dev": true
|
||||
},
|
||||
"caseless": {
|
||||
|
|
|
@ -47,18 +47,25 @@ $("#archive_page_title").html('<?php echo $_html ?>');
|
|||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<!-- code to link directly to media
|
||||
<div class="resource">
|
||||
<a class="resource-link" href="< ?= $media->originalUrl(); ?>">
|
||||
<img src="< ?= $media->thumbnailUrl("square"); ?>" />
|
||||
<span class="resource-name">
|
||||
< ?= $media->displayTitle(); ?>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
-->
|
||||
|
||||
|
||||
<?php if (!$embedMedia && $itemMedia): ?>
|
||||
<div class="media-list" style="display: flex;">
|
||||
<?php foreach ($itemMedia as $media): ?>
|
||||
<div class="resource">
|
||||
<?php echo $media->linkPretty(); ?>
|
||||
<div class="resource">
|
||||
<a class="resource-link" href="<?= $media->originalUrl(); ?>">
|
||||
<img src="<?= $media->thumbnailUrl("square"); ?>" />
|
||||
<span class="resource-name">
|
||||
<?= $media->displayTitle(); ?>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<!-- include code to link directly to media here -->
|
||||
</div>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
|
Loading…
Reference in New Issue