-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (125 loc) · 4.65 KB
/
Copy pathindex.html
File metadata and controls
143 lines (125 loc) · 4.65 KB
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
<!DOCTYPE HTML>
<!--
Strata by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-MJEYZTSHCP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-MJEYZTSHCP');
</script>
<title>Portfolio</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="is-preload">
<!-- Header -->
<header id="header">
<div class="inner">
<a href="#" class="image avatar"><img src="images/me.jpg" alt="" /></a>
<h1><strong>Hi I'm Mitchell</strong>, a dedicated software engineering student at Curtin university
with a keen interest in .NET, Java, and backend development.<br />
</div>
<div id="nav-menu" class="left-section">
<ul class="actions stacked">
<li><a href="index.html" class="button">Home</a></li>
<li><a href="about.html" class="button">About Me</a></li>
<li><a href="portfolio.html" class="button">Portfolio</a></li>
</ul>
</div>
</header>
<!-- Main -->
<div id="main">
<!-- One -->
<section id="one">
<header class="major">
<h2>Final Year Software Engineering Student</h2>
</header>
<p>Building user-focused applications across web, mobile, and distributed systems.<br /> Currently exploring advanced techniques in AI, distributed computing, and intuitive UI design</p>
<ul class="actions">
<li><a href="about.html" class="button">Learn More</a></li>
</ul>
</section>
<!-- Two -->
<section id="two">
<h2>Recent Work</h2>
<div class="row" id="work-items">
<!-- Dynamic content will be added here -->
</div>
<ul class="actions">
<li><a href="portfolio.html" class="button">Full Portfolio</a></li>
</ul>
</section>
<script>
// Fetch the projects JSON file
fetch('projects.json')
.then(response => response.json())
.then(projects => {
// Shuffle the projects array and pick two random projects
const randomProjects = projects.sort(() => 0.5 - Math.random()).slice(0, 2);
// Get the work-items container
const workItemsContainer = document.getElementById('work-items');
// Generate HTML for the two random projects
randomProjects.forEach(project => {
const projectHTML = `
<article class="col-6 col-12-xsmall work-item">
<a href="project.html?id=${project.id}" target="_blank" class="image fit thumb">
<img src="${project.image}" alt="${project.title}" />
</a>
<h3>${project.title}</h3>
<p>${project.description}</p>
</article>
`;
// Append to the container
workItemsContainer.innerHTML += projectHTML;
});
})
.catch(error => console.error('Error fetching projects:', error));
</script>
<!-- Three -->
<section id="three">
<h2>Get In Touch</h2>
<div class="row">
<div class="col-4 col-12-small">
<ul class="labeled-icons">
<li>
<h3 class="icon solid fa-mobile-alt"><span class="label">Phone</span></h3>
0432-553-096
</li>
<li>
<h3 class="icon solid fa-envelope"><span class="label">Email</span></h3>
<a href="#">pontague.mitchell@gmail.com</a>
</li>
</ul>
</div>
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<div class="inner">
<ul class="icons">
<li><a href="https://github.com/mEp3ii2" class="icon brands fa-github"><span class="label">Github</span></a></li>
<li><a href="mailto:pontague.mitchell@gmail.com" class="icon solid fa-envelope"><span class="label">Email</span></a></li>
</ul>
<ul class="copyright">
<li>© Mitchell Pontague</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.poptrox.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>