-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfyp-dev.html
120 lines (111 loc) · 5.12 KB
/
fyp-dev.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cormac Farrelly - Blog</title>
<meta name="description" content="Exploring the world of industrial automation, robotics, and artificial intelligence. Portfolio for Cormac Farrelly">
<meta name="keywords" content="industrial automation, robotics, artificial intelligence, technology, machine learning, cormac farrelly, tus, tus cormac farrelly, cmac, cmac website, medicalmpapp, medical machine learning, xray machine learning">
<meta name="author" content="Cormac Farrelly">
<meta name="robots" content="index, follow">
<!-- Stylesheets and scripts -->
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="img/NFT.ico" type="image/x-icon">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<script>
window.va = window.va || function () { (window.vaq = window.vaq || []).push(arguments); };
</script>
<script defer src="/_vercel/insights/script.js"></script>
</head>
<body>
<!-- Header and navigation -->
<header>
<nav class="navbar navbar-fixed-top navbar-inverse">
<div class="container">
<!-- Navbar toggle button -->
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Navbar content -->
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/" title="">01: Home</a></li>
<li><a href="/resume" title="">02: Resume</a></li>
<li><a href="/blog" title="">03: Blog</a></li>
<li><a href="/github" title="">04: GitHub</a></li>
</ul>
</div>
</div>
</nav>
</header>
<div class="login-button" id="loginStatus">
<!-- User login status will be injected here by script -->
</div>
<!-- Main content container -->
<div class="section-container">
<div class="container">
<div class="row resume-row-label">
<div class="col-xs-12">
<div class="template-example">
<h2 class="template-title-example">FYP Development from start to finish</h2>
</div>
</div>
</div>
</div>
<div class="container posts">
<ul>
<li>
<a href="_posts/fyp-dev/my-own-algorithm-blog-post">Early Stages of FYP: Developing the Algorithm</a>
</li>
<br>
<br>
<li>
<a href="_posts/fyp-dev/fyp-blog-post">Middle Stages of FYP: Conception and Design</a>
</li>
<br>
<br>
<li>
<a href="_posts/fyp-dev/final-year-project-unfolded">Final Stages of FYP: Full Design and Build</a>
</li>
</ul>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', () => {
const username = localStorage.getItem('username');
const loginStatus = document.getElementById('loginStatus');
if (username) {
loginStatus.innerHTML = `
<a href="#" class="btn btn-primary">Welcome, ${username}</a>
<button id="logoutButton" class="btn btn-danger">Logout</button>
`;
// Logout functionality
document.getElementById('logoutButton').addEventListener('click', () => {
localStorage.removeItem('username');
window.location.href = 'index'; // Redirect to home page or login page
});
} else {
loginStatus.innerHTML = '<a href="login" class="btn btn-primary">Login</a>';
}
});
</script>
<!-- Footer -->
<div class="footer-container">
<div class="container">
<div class="row">
<div class="col-xs-12 text-center">
<p>Inspired by free time</p>
<p>This project was developed with the help of AI tools, using them as a guide, assistant, and for significant code generation. All final creative decisions and deployments reflect my own work and intentions.
</p>
<p>© Cormac Farrelly 2024</p>
</div>
</div>
</div>
</div>
</body>
</html>