🐞 fix: Fix mobile issues, enablke deploy on push #skipGA
Deploy to Dreamhost / build (push) Skipped
Sync TODOs with Issues / sync_todos (push) Successful in 6s

This commit is contained in:
Keith Solomon
2026-08-29 08:52:57 -05:00
parent 21db4f31a3
commit b9bbf615c9
5 changed files with 28 additions and 8 deletions
+13
View File
@@ -16,6 +16,11 @@ if ( $location === 'main_navigation' ) {
} else {
$menuID = 'menu-container-aux';
}
// Resume link is exposed by header.php via $GLOBALS['ks_portfolio_link_resume']
// and read here so it can be appended as a mobile-only CTA at the bottom of
// the menu panel (hidden on desktop via lg:hidden).
$linkResume = isset( $GLOBALS['ks_portfolio_link_resume'] ) ? $GLOBALS['ks_portfolio_link_resume'] : '';
?>
<ul id="<?php echo esc_attr( $menuID ); ?>" class="menu-vdi">
@@ -30,4 +35,12 @@ if ( $location === 'main_navigation' ) {
<?php include __DIR__ . '/single.php'; ?>
<?php endif; ?>
<?php endforeach; ?>
<?php if ( ! empty( $linkResume ) && $location === 'main_navigation' ) : ?>
<li class="menu-vdi__item menu-item--resume lg:hidden border-t border-secondary-200 mt-2 pt-2">
<a href="<?php echo esc_url( $linkResume ); ?>" class="menu-vdi__link button button--primary mx-4 inline-block">
<?php echo esc_html__( 'Resume', 'ks-portfolio' ); ?>
</a>
</li>
<?php endif; ?>
</ul>