(Added Edited template with July 12, 2025.) |
m (Bot: auto-update documentation menu cards) |
||
Line 1: | Line 1: | ||
<html> | <html> | ||
< | <head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||
<style>/* MS Learn style documentation */ | |||
* { | |||
margin: 0; | |||
padding: 0; | |||
box-sizing: border-box; | |||
} | } | ||
body { | |||
font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, | |||
'Helvetica Neue', Arial, sans-serif; | |||
background: #fff; | |||
color: #242424; | |||
line-height: 1.5; | |||
font-size: 16px; | |||
font-size: | margin: 0; /* Remove default body margin */ | ||
padding: 0; /* Remove default body padding */ | |||
} | } | ||
. | .ms-container { | ||
max-width: 1200px; | |||
margin: 0 auto; | |||
padding: 8px 24px 24px 24px; /* Much less top padding */ | |||
} | } | ||
. | /* Header */ | ||
.ms-header { | |||
margin-bottom: 12px; /* Reduced from 16px */ | |||
} | } | ||
. | .ms-title { | ||
font-size: | font-size: 28px; | ||
margin- | font-weight: 600; | ||
color: #242424; | |||
margin-bottom: 4px; | |||
line-height: 1.2; | |||
} | } | ||
. | .ms-subtitle { | ||
font-size: 16px; | |||
color: #707070; | |||
font-weight: 400; | |||
} | } | ||
. | /* Grid layout */ | ||
.ms-grid { | |||
display: grid; | |||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); | |||
gap: 16px; | |||
margin-top: 12px; /* Reduced from 16px */ | |||
} | } | ||
. | /* Card style */ | ||
display: | .ms-card { | ||
display: flex; | |||
padding: | align-items: flex-start; | ||
padding: 20px; | |||
background: # | background: #fff; | ||
border: 1px solid #e1e1e1; | |||
border-radius: 4px; | |||
text-decoration: none; | text-decoration: none; | ||
color: inherit; | |||
transition: all 0.2s ease; | |||
cursor: pointer; | |||
} | } | ||
. | .ms-card:hover { | ||
border-color: #0078d4; | |||
box-shadow: 0 2px 4px rgba(0,0,0,0.05); | |||
} | } | ||
.ms-card:hover .ms-card-icon { | |||
color: #0078d4; | |||
} | } | ||
.ms-card-icon { | |||
flex-shrink: 0; | |||
width: 40px; | |||
padding: | height: 40px; | ||
margin-right: 16px; | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
color: #707070; | |||
transition: color 0.2s ease; | |||
} | |||
.ms-card-content { | |||
flex: 1; | |||
min-width: 0; | |||
} | |||
.ms-card-title { | |||
font-size: 16px; | |||
font-weight: 600; | |||
color: #242424; | |||
line-height: 1.4; | |||
display: block; | |||
overflow: hidden; | |||
text-overflow: ellipsis; | |||
} | |||
/* Responsive */ | |||
@media (max-width: 768px) { | |||
.ms-container { | |||
padding: 6px 16px 16px 16px; /* Much less top padding for mobile */ | |||
} | |||
.ms-title { | |||
font-size: 24px; | |||
} | |||
.ms-grid { | |||
grid-template-columns: 1fr; | |||
gap: 12px; | |||
} | |||
.ms-card { | |||
padding: 16px; | |||
} | } | ||
} | } | ||
<div class=" | /* Dark mode */ | ||
< | @media (prefers-color-scheme: dark) { | ||
<a href="/index.php/Training:Bootcamp/ | body { | ||
background: #1e1e1e; | |||
</html> | color: #d4d4d4; | ||
} | |||
.ms-title { | |||
color: #ffffff; | |||
} | |||
.ms-subtitle { | |||
color: #a0a0a0; | |||
} | |||
.ms-card { | |||
background: #252526; | |||
border-color: #3e3e42; | |||
} | |||
.ms-card:hover { | |||
border-color: #0e639c; | |||
background: #2d2d30; | |||
} | |||
.ms-card-title { | |||
color: #d4d4d4; | |||
} | |||
.ms-card-icon { | |||
color: #8b8b8b; | |||
} | |||
.ms-card:hover .ms-card-icon { | |||
color: #0e639c; | |||
} | |||
}</style> | |||
</head> | |||
<body> | |||
<div class="ms-container"> | |||
<div class="ms-header"> | |||
<h1 class="ms-title">Bootcamp</h1> | |||
<p class="ms-subtitle">Browse guides and technical documentation</p> | |||
</div> | |||
<div class="ms-grid"> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Bootcamp Introduction</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp%2FStart"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Before Starting Guide</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp%2FStart%2FLevels"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Choose where to start</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_1"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 1</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_2"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 2</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_3"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 3</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_4"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 4</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_5"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 5</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_6"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 6</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_7"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 7</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_8"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 8</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_9"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 9</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_10"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 10</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_11"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 11</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_12"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 12</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_13"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 13</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_14"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 14</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_15"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 15</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_16"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 16</span> | |||
</div> | |||
</a> | |||
<a class="ms-card" href="/index.php/Training:Bootcamp:Chapter_17"> | |||
<div class="ms-card-icon"> | |||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | |||
<path d="M13 2H6C5.46957 2 4.96086 2.21071 4.58579 2.58579C4.21071 2.96086 4 3.46957 4 4V20C4 20.5304 4.21071 21.0391 4.58579 21.4142C4.96086 21.7893 5.46957 22 6 22H18C18.5304 22 19.0391 21.7893 19.4142 21.4142C19.7893 21.0391 20 20.5304 20 20V9L13 2Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
<path d="M13 2V9H20" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> | |||
</svg> | |||
</div> | |||
<div class="ms-card-content"> | |||
<span class="ms-card-title">Chapter 17</span> | |||
</div> | |||
</a> | |||
</div> | |||
</div> | |||
</body> | |||
</html> | |||
__HIDECREDIT__ | |||
__NOBREADCRUMBS__ |
Latest revision as of 02:43, 21 July 2025
Bootcamp
Browse guides and technical documentation
__HIDECREDIT__