-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolios.html
152 lines (147 loc) · 5.93 KB
/
portfolios.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<link
rel="icon"
href="images/logo.png"
type="image/icon type"
/>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<title>Barracoders - Meet Our Coders</title>
<link rel="stylesheet" href="styles/portfolios.css" />
</head>
<body>
<nav>
<div class="logo">
<a href="index.html"><img src="images/logo.png" alt="Barracoders Logo" /></a>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="docs/bylaws.pdf">Bylaws</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="portfolios.html">Portfolios</a></li>
</ul>
</nav>
<header>
<h1>Meet Our Coders</h1>
</header>
<main>
<section id="portfolios">
<h2>Our Students' Portfolios</h2>
<div class="students-grid">
<div class="student-item">
<div class="student-photo">
<img src="/images/portfolio-images/josh-portolfio-image.png" alt="Josh Worthington" />
</div>
<h3>Josh Worthington</h3>
<p>Josh is a full-stack developer who codes web apps, games, and python tools.</p>
<div class="portfolio-button">
<a href="https://joshworthington.barracoders.com">View Portfolio</a>
</div>
</div>
<div class="student-item">
<div class="student-photo">
<img src="images/portfolio-images/julien-portfolio-image.png" alt="Julien Rodriguez-Jaume" />
</div>
<h3>Julien Rodriguez-Jaume</h3>
<p>Julien programs in JavaScript games and Python programs.</p>
<div class="portfolio-button">
<a href="https://julienrodriguez.barracoders.com">View Portfolio</a>
</div>
</div>
<div class="student-item">
<div class="student-photo">
<img src="images/portfolio-images/gio-nodal.webp" alt="Want a Portfolio?" />
</div>
<h3>Gio Nodal</h3>
<p>the amazing, astounding and confounding archives of my html work</p>
<div class="portfolio-button">
<a href="https://gionodal.barracoders.com/">View Portfolio</a>
</div>
</div>
<div class="student-item">
<div class="student-photo">
<img src="images/portfolio-images/portfolio-placeholder.webp" alt="Want a Portfolio?" />
</div>
<h3>Want Your Own Portfolio?</h3>
<p>We host your portfolio for free at {your-name}.barracoders.com, Just sumbit one to us!</p>
<div class="portfolio-button">
<a href="https://github.com/Barracoders/Portfolio-Templete">Porfolio templete</a>
</div>
</div>
<!-- <div class="student-item">
<div class="student-photo">
<img src="images/Coming_Soon.png" alt="Student 2" />
</div>
<h3>Student Name 2</h3>
<p>A brief bio about student 2 goes here, highlighting their achievements, interests, and skills.</p>
<div class="portfolio-button">
<a href="#">View Portfolio</a>
</div>
</div>
<div class="student-item">
<div class="student-photo">
<img src="images/Coming_Soon.png" alt="Student 2" />
</div>
<h3>Student Name 2</h3>
<p>A brief bio about student 2 goes here, highlighting their achievements, interests, and skills.</p>
<div class="portfolio-button">
<a href="#">View Portfolio</a>
</div>
</div>
<div class="student-item">
<div class="student-photo">
<img src="images/Coming_Soon.png" alt="Student 2" />
</div>
<h3>Student Name 2</h3>
<p>A brief bio about student 2 goes here, highlighting their achievements, interests, and skills.</p>
<div class="portfolio-button">
<a href="#">View Portfolio</a>
</div>
</div>
<div class="student-item">
<div class="student-photo">
<img src="images/Coming_Soon.png" alt="Student 2" />
</div>
<h3>Student Name 2</h3>
<p>A brief bio about student 2 goes here, highlighting their achievements, interests, and skills.</p>
<div class="portfolio-button">
<a href="#">View Portfolio</a>
</div>
</div>
<div class="student-item">
<div class="student-photo">
<img src="images/Coming_Soon.png" alt="Student 2" />
</div>
<h3>Student Name 2</h3>
<p>A brief bio about student 2 goes here, highlighting their achievements, interests, and skills.</p>
<div class="portfolio-button">
<a href="#">View Portfolio</a>
</div>
</div> -->
<!-- Add more student items similarly -->
</div>
</section>
</main>
<script>
document.addEventListener('keydown', function(event) {
if (event.ctrlKey && event.altKey && event.key === 'x') {
window.open('/dev-tools/directory.html', '_blank');
}
});
</script>
<footer>
<p>
© 2024
<a href="https://www-bhs.stjohns.k12.fl.us/">Beachside Highschool</a>. Created by the <a href="/images/julien_jumpscare.png" style="text-decoration: none; color: inherit;">Beachside Barracoders</a>.
</p>
<p>
<a href="https://github.com/Barracoders/barracoders" style="text-decoration: none; color: #a6aeb0;">
<i class="fa-brands fa-github"></i> Proudly Open-Source
</a>
</p>
</footer>
</body>
</html>