mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-20 02:15:12 +00:00
- Rename samples page to /learning-hub/cookbook/ - Remove Samples from top navigation bar - Add Cookbook to learning hub sidebar under Hands-on section - Add Cookbook card to learning hub index page - Add redirect from /samples/ to /learning-hub/cookbook/ - Add breadcrumb navigation back to Learning Hub
252 lines
5.9 KiB
Plaintext
252 lines
5.9 KiB
Plaintext
---
|
|
import BaseLayout from '../../../layouts/BaseLayout.astro';
|
|
import Modal from '../../../components/Modal.astro';
|
|
|
|
const base = import.meta.env.BASE_URL;
|
|
---
|
|
|
|
<BaseLayout title="Cookbook" description="Code samples, recipes, and examples for building with GitHub Copilot" activeNav="learning-hub">
|
|
<main id="main-content">
|
|
<div class="page-header">
|
|
<div class="container">
|
|
<nav class="breadcrumb" aria-label="Breadcrumb">
|
|
<a href={`${base}learning-hub/`}>← Learning Hub</a>
|
|
</nav>
|
|
<h1>🍳 Cookbook</h1>
|
|
<p>Code samples, recipes, and examples for building with GitHub Copilot tools</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="page-content">
|
|
<div class="container">
|
|
<div class="search-bar">
|
|
<label for="search-input" class="sr-only">Search recipes</label>
|
|
<input type="text" id="search-input" placeholder="Search recipes..." autocomplete="off">
|
|
</div>
|
|
|
|
<div class="filters-bar" id="filters-bar">
|
|
<div class="filter-group">
|
|
<label for="filter-language">Language:</label>
|
|
<select id="filter-language" aria-label="Filter by language">
|
|
<option value="">All Languages</option>
|
|
</select>
|
|
</div>
|
|
<div class="filter-group">
|
|
<label for="filter-tag">Tags:</label>
|
|
<select id="filter-tag" multiple aria-label="Filter by tags"></select>
|
|
</div>
|
|
<button id="clear-filters" class="btn btn-secondary btn-small">Clear Filters</button>
|
|
</div>
|
|
|
|
<div class="results-count" id="results-count" aria-live="polite"></div>
|
|
|
|
<div id="samples-list" role="list">
|
|
<div class="loading" aria-live="polite">Loading samples...</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<Modal />
|
|
|
|
<style is:global>
|
|
/* Cookbook Section */
|
|
.cookbook-section {
|
|
margin-bottom: 48px;
|
|
}
|
|
|
|
.cookbook-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 24px;
|
|
margin-bottom: 24px;
|
|
padding-bottom: 16px;
|
|
border-bottom: 1px solid var(--color-border);
|
|
}
|
|
|
|
.cookbook-info h2 {
|
|
margin: 0 0 8px 0;
|
|
font-size: 24px;
|
|
color: var(--color-text-emphasis);
|
|
}
|
|
|
|
.cookbook-info p {
|
|
margin: 0;
|
|
color: var(--color-text-muted);
|
|
}
|
|
|
|
.cookbook-languages {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.lang-tab {
|
|
padding: 8px 12px;
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--border-radius);
|
|
background: var(--color-bg-secondary);
|
|
color: var(--color-text);
|
|
cursor: pointer;
|
|
font-family: 'Monaspace Argon NF', monospace;
|
|
font-size: 18px;
|
|
transition: all var(--transition);
|
|
}
|
|
|
|
.lang-tab:hover {
|
|
border-color: var(--color-link);
|
|
background: var(--color-bg-tertiary);
|
|
}
|
|
|
|
.lang-tab.active {
|
|
border-color: var(--color-link);
|
|
background: var(--color-link);
|
|
color: white;
|
|
}
|
|
|
|
/* Recipe Grid */
|
|
.recipes-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
|
|
gap: 20px;
|
|
}
|
|
|
|
/* Recipe Card */
|
|
.recipe-card {
|
|
background: var(--color-card-bg);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--border-radius-lg);
|
|
padding: 24px;
|
|
transition: all var(--transition);
|
|
}
|
|
|
|
.recipe-card:hover {
|
|
border-color: var(--color-link);
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.recipe-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.recipe-header h3 {
|
|
margin: 0;
|
|
font-size: 18px;
|
|
color: var(--color-text-emphasis);
|
|
}
|
|
|
|
.recipe-langs {
|
|
display: flex;
|
|
gap: 4px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.lang-indicator {
|
|
font-family: 'Monaspace Argon NF', monospace;
|
|
font-size: 16px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.recipe-description {
|
|
color: var(--color-text-muted);
|
|
font-size: 14px;
|
|
margin: 0 0 16px 0;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.recipe-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 6px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.recipe-tag {
|
|
background: var(--color-bg-secondary);
|
|
color: var(--color-text-muted);
|
|
padding: 4px 10px;
|
|
border-radius: 12px;
|
|
font-size: 12px;
|
|
border: 1px solid var(--color-border);
|
|
}
|
|
|
|
.recipe-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
padding-top: 16px;
|
|
border-top: 1px solid var(--color-border);
|
|
}
|
|
|
|
.recipe-actions .btn {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.recipe-actions .btn svg {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.no-variant {
|
|
color: var(--color-text-muted);
|
|
font-size: 13px;
|
|
font-style: italic;
|
|
}
|
|
|
|
/* Empty state */
|
|
.empty-state {
|
|
text-align: center;
|
|
padding: 64px 24px;
|
|
background: var(--color-bg-secondary);
|
|
border-radius: var(--border-radius-lg);
|
|
border: 1px dashed var(--color-border);
|
|
}
|
|
|
|
.empty-state h3 {
|
|
margin: 0 0 8px 0;
|
|
color: var(--color-text-muted);
|
|
}
|
|
|
|
.empty-state p {
|
|
margin: 0;
|
|
color: var(--color-text-muted);
|
|
}
|
|
|
|
/* Search highlight */
|
|
.search-highlight {
|
|
background-color: var(--color-warning);
|
|
color: var(--color-text-emphasis);
|
|
padding: 0 2px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.cookbook-header {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.recipes-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.recipe-actions {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.recipe-actions .btn {
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import '../../../scripts/pages/samples';
|
|
</script>
|
|
</BaseLayout>
|