-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3_projects.html
More file actions
133 lines (109 loc) * 3.29 KB
/
3_projects.html
File metadata and controls
133 lines (109 loc) * 3.29 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
>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Projects - Taeraemontitle>
<link rel="stylesheet" href="style.css" />
<style>
.project-block {
border: 1px solid #ddd;
padding: 20px;
margin-bottom: 20px;
display: flex;
align-items: flex-start;
gap: 20px;
}
.project-block img {
width: 160px;
height: auto;
object-fit: cover;
}
.project-text {
flex-grow: 1;
}
.project-text h3 {
margin: 0;
color: #007bff;
}
.project-text p {
margin: 5px 0 10px 0;
}
.project-text a {
font-size: 14px;
color: #555;
}
style>
head>
<body>
<div id="navbar-placeholder">div>
<script src="/shared/load-navbar.js">script>
<div class="content">
<h1>Projectsh1>
<div id="project-list">div>
div>
<script>
const projects = [
{
title: "SDR Based Flight Termination System",
file: "projects/fts/index.html",
description: "SDR-Based IRIG 319 Flight Termination System",
image: "projects/fts/fig1.jpg"
},
{
title: "Avionics of Suborbital Launch Vehicle (BW0.4, Perigee)",
file: "projects/bw04/index.html",
description: "Suborbital Launch Vehicle Avionics Software",
image: "projects/bw04/thumbnail.jpg"
},
{
title: "Jet engine based Hovering vehicle (BW0.3, Perigee)",
file: "projects/bw03/index.html",
description: "Jet-Powered Hovering Vehicle",
image: "projects/bw03/thumbnail.jpg"
},
{
title: "Harmonic Drive Equatorial Mount",
file: "projects/harmonic_eq/index.html",
description: "Harmonic Drive-Based Equatorial Mount",
image: "projects/harmonic_eq/thumbnail.jpg"
},
{
title: "LTE based signal collecting Tag (S.O.X)",
file: "projects/tag_v3/index.html",
description: "A Tag Device for LTE-based Signal Collection in Fingerprinting-based Positioning",
image: "projects/tag_v3/thumbnail.png"
},
// saeroun peurojegteu cuganeun araeceoreom bogbuthaeseo sseugiman hamyeon dwae!
// {
// title: "My Cool Project",
// file: "projects/2024-05-01p.html",
// description: "Something awesome I made recently.",
// image: "thumbs/mycoolproject.png"
// }
];
const projectContainer = document.getElementById("project-list");
projects.forEach(p => {
const wrapper = document.createElement("div");
wrapper.className = "project-block";
const img = document.createElement("img");
img.src = p.image;
img.alt = "Project thumbnail";
const text = document.createElement("div");
text.className = "project-text";
const h3 = document.createElement("h3");
const link = document.createElement("a");
link.href = p.file;
link.textContent = p.title;
h3.appendChild(link);
const desc = document.createElement("p");
desc.textContent = p.description;
text.appendChild(h3);
text.appendChild(desc);
wrapper.appendChild(img);
wrapper.appendChild(text);
projectContainer.appendChild(wrapper);
});
script>
body>
html>