Add anchor IDs to example cards for proper navigation from index page
This commit is contained in:
parent
a41867a74b
commit
ae8c11c555
1 changed files with 6 additions and 6 deletions
|
|
@ -29,7 +29,7 @@
|
|||
<div class="container">
|
||||
<div class="examples-grid large-grid">
|
||||
<!-- Basic Example -->
|
||||
<div class="example-card">
|
||||
<div class="example-card" id="basic">
|
||||
<h3>Basic</h3>
|
||||
<p>A minimal example that demonstrates the simplest use of IncludeBuild. Just include build.h, call ib_init() and ib_build() - that's it!</p>
|
||||
<div class="example-details">
|
||||
|
|
@ -61,7 +61,7 @@
|
|||
</div>
|
||||
|
||||
<!-- Multi-File Example -->
|
||||
<div class="example-card">
|
||||
<div class="example-card" id="multi-file">
|
||||
<h3>Multi-file</h3>
|
||||
<p>Demonstrates how IncludeBuild automatically handles a project with multiple source files and resolves dependencies between them.</p>
|
||||
<div class="example-details">
|
||||
|
|
@ -93,7 +93,7 @@
|
|||
</div>
|
||||
|
||||
<!-- Library Example -->
|
||||
<div class="example-card">
|
||||
<div class="example-card" id="library">
|
||||
<h3>Library</h3>
|
||||
<p>Shows how to create a complete library with static and dynamic versions plus tests with just TWO LINES of code.</p>
|
||||
<div class="example-details">
|
||||
|
|
@ -121,7 +121,7 @@
|
|||
</div>
|
||||
|
||||
<!-- Game Example -->
|
||||
<div class="example-card">
|
||||
<div class="example-card" id="game">
|
||||
<h3>Game</h3>
|
||||
<p>A complete Pong game using the Raylib external library, demonstrating IncludeBuild's ability to handle dependencies and cross-platform builds.</p>
|
||||
<div class="example-details">
|
||||
|
|
@ -156,7 +156,7 @@
|
|||
</div>
|
||||
|
||||
<!-- Logging Example -->
|
||||
<div class="example-card">
|
||||
<div class="example-card" id="logging">
|
||||
<h3>Logging</h3>
|
||||
<p>Demonstrates IncludeBuild's logging features with different verbosity levels, allowing for detailed build information and debugging.</p>
|
||||
<div class="example-details">
|
||||
|
|
@ -198,7 +198,7 @@
|
|||
</div>
|
||||
|
||||
<!-- Custom Limits Example -->
|
||||
<div class="example-card">
|
||||
<div class="example-card" id="custom-limits">
|
||||
<h3>Custom Limits</h3>
|
||||
<p>Demonstrates how to customize IncludeBuild's internal limits for larger projects by defining constants before including build.h.</p>
|
||||
<div class="example-details">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue