Skip to content

Commit

Permalink
add html repo index page to navigate all pages in repo
Browse files Browse the repository at this point in the history
  • Loading branch information
jackoconnordev committed Oct 1, 2023
1 parent 84202b9 commit 184f033
Show file tree
Hide file tree
Showing 44 changed files with 114 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
27 changes: 27 additions & 0 deletions classes/birds-with-hands/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">

<head>
<title>Birds with hands - versions</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet">
</head>

<body>
<h1>Birds with hands versions</h1>

<nav>
<h2>Birds with hands</h2>
<ul>
<li><a href="2/">Version 1 - common HTML tags</a></li>
<li><a href="3/">Version 2 - add styling with CSS</a></li>
</ul>
</nav>

<p><strong>Pro-tip: Right click this page and select "View page source" to see this page's HTML</strong></p>

<p><em>Remember kids, all HTML is responsive, it takes CSS and JavaScript to break your site.</em></p>
</body>

</html>
28 changes: 28 additions & 0 deletions classes/coder-dojo-homepage/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">

<head>
<title>CoderDojo homepage versions</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>

<body>
<h1>CoderDojo homepage versions</h1>

<nav>
<h2>CoderDojo homepage</h2>
<ul>
<li><a href="v1/">Version 1 - add text and image content</a></li>
<li><a href="v2/">Version 2 - begin styling and layout</a></li>
<li><a href="v3/">Version 3 - more styling and layout</a></li>
<li><a href="v4/">Version 4 - form and button JavaScript</a></li>
</ul>
</nav>

<p><strong>Pro-tip: Right click this page and select "View page source" to see this page's HTML</strong></p>

<p><em>Remember kids, all HTML is responsive, it takes CSS and JavaScript to break your site.</em></p>
</body>

</html>
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ <h3>Keep up to date with our newsletter</h3>
<div>
<img src="assets/raspberry-pi-light.svg" alt="Raspberry Pi logo">
<img src="assets/coderdojo_icon.svg" alt="CoderDojo logo">
<p>CoderDojo is part of the Raspberry Pi Foundation.</p>
<a href="https://www.raspberrypi.org/about/">Find out more</a>
<p>CoderDojo is part of the Raspberry Pi Foundation.</p>
<a href="https://www.raspberrypi.org/about/">Find out more</a>
</div>

<!--Business info-->
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
29 changes: 29 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">

<head>
<title>IBM CoderDojo Cork</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>

<body>
<h1>IBM CoderDojo webpages</h1>

<p>Use these links to navigate to the different webpages published on the IBM CoderDojo Cork html repository.</p>

<nav>
<h2>Member websites</h2>
<ul>
<li><a href="./classes/birds-with-hands">Birds with hands</a></li>
<li><a href="./classes/coder-dojo-homepage">CoderDojo homepage</a></li>
<li><a href="./personal-websites/">Member websites</a></p>
</ul>
</nav>

<p><strong>Pro-tip: Right click this page and select "View page source" to see this page's HTML</strong></p>

<p><em>Remember kids, all HTML is responsive, it takes CSS and JavaScript to break your site.</em></p>
</body>

</html>
28 changes: 28 additions & 0 deletions personal-websites/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">

<head>
<title>Member websites</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>

<body>
<h1>IBM CoderDojo Cork member websites</h1>

<p>If you'd like to get your website hosted on IBM CoderDojo Cork's web hosting service let Jack O'Connor or Thomas
Galligan know.</p>

<nav>
Member websites
<ul>
<li><a href="https://jackoconnor.dev">Jack O'Connor (Mentor)</a></li>
</ul>
</nav>

<p><strong>Pro-tip: Right click this page and select "View page source" to see this page's HTML</strong></p>

<p><em>Remember kids, all HTML is responsive, it takes CSS and JavaScript to break your site.</em></p>
</body>

</html>

0 comments on commit 184f033

Please sign in to comment.