-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudent-data.js
More file actions
47 lines (42 loc) · 1.61 KB
/
student-data.js
File metadata and controls
47 lines (42 loc) · 1.61 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
// ================================
// Edit ONLY this file
// Put your information in the fields below
// ================================
window.studentData = {
// Your name (shown in the header)
name: "Your Name Here",
// Short bio text (2–5 sentences). Appears under "About Me".
bio: "Write a short bio here. Include your interests, major, and mapping focus.",
// Optional: Short header sentence. If omitted, a default intro is shown.
// headerIntro: "Welcome! Explore my projects below.",
// Optional: Set a custom last updated date, e.g., "March 10, 2026".
// If omitted, the page will use the file's last modified date.
lastUpdated: "",
// Portfolio items: add, remove, or edit items in this array.
// For each item, choose type: "iframe" (interactive web map) OR "image" (static map).
// For iframes, set src to the EMBED URL from your mapping platform.
// For images, upload your image to the images/ folder and set src to that path.
portfolio: [
{
title: "Project 1 Title",
description: "Short description of project 1.",
link: "https://example.com",
type: "iframe",
src: "https://example.com" // replace with your embed URL
},
{
title: "Project 2 Title",
description: "Short description of project 2.",
link: "https://example.com",
type: "image",
src: "images/pexels-pixabay-50577.jpg" // replace with your uploaded image path
},
{
title: "Project 3 Title",
description: "Short description of project 3.",
link: "https://example.com",
type: "iframe",
src: "https://example.com"
}
]
};