-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (63 loc) · 3.03 KB
/
Copy pathindex.html
File metadata and controls
77 lines (63 loc) · 3.03 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- ================= SEO ================= -->
<title>project_feed</title>
<meta name="description" content="프로젝트를 발견, 공유, 탐색하는 깃허브 기반의 개발자 피드 플랫폼">
<meta name="keywords" content="project, feed, github, open source, developer, firebase">
<meta name="author" content="project-feed">
<!-- ================= Favicon ================= -->
<link rel="icon" href="assets/icon.svg" type="image/svg+xml">
<!-- ================= Open Graph ================= -->
<meta property="og:title" content="project_feed">
<meta property="og:description" content="프로젝트를 발견, 공유, 탐색하는 개발자 피드 플랫폼.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://project-feed.github.io">
<meta property="og:image" content="https://project-feed.github.io/assets/social_media_preview.png">
<!-- ================= Twitter Card ================= -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="project_feed">
<meta name="twitter:description" content="프로젝트를 발견, 공유, 탐색하는 개발자 피드 플랫폼.">
<meta name="twitter:image" content="https://project-feed.github.io/assets/social_media_preview.png">
<!-- ================= Style Sheet ================= -->
<link rel="stylesheet" href="style.css">
<!-- ================= External Libraries ================= -->
<!-- Marked.js for parsing markdown in descriptions -->
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
</head>
<body>
<header>
<div class="header-container">
<a href="#/" class="logo" id="logo-link">
<img src="assets/icon.svg" class="logo-icon" alt="Project-feed logo">
<div class="logo-text">
<span class="logo-title">project_feed</span>
<span class="logo-subtitle">A simple GitHub-powered project feed</span>
</div>
</a>
<div class="nav-actions">
<nav>
<a href="#/" class="nav-link" id="nav-feed">Feed</a>
<a href="#/submit" class="nav-link" id="nav-submit">Submit</a>
</nav>
<div id="user-nav-container" style="display: inline-flex; align-items: center; gap: 10px;">
<a href="#/login" class="nav-link" id="nav-login">Login</a>
</div>
</div>
</div>
</header>
<main class="container" id="app">
<!-- Dynamic Content Loaded by app.js -->
<div class="loading">Loading database...</div>
</main>
<footer>
<div class="footer-container">
<p>© 2026 <a href="#/">project_feed</a> · <a href="https://github.com/project-feed/project-feed.github.io" target="_blank" rel="noopener">GitHub Repository</a> · MIT License</p>
</div>
</footer>
<!-- ================= Application Entrypoint ================= -->
<script type="module" src="app.js"></script>
</body>
</html>