-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathauthors.html
More file actions
132 lines (120 loc) · 5.6 KB
/
authors.html
File metadata and controls
132 lines (120 loc) · 5.6 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
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; connect-src 'self'; img-src 'self' data:; frame-src 'self';">
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<meta http-equiv="X-Frame-Options" content="SAMEORIGIN">
<meta http-equiv="X-XSS-Protection" content="1; mode=block">
<meta name="referrer" content="strict-origin-when-cross-origin">
<title>foodAI — Authors</title>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Material+Symbols+Outlined:opsz,wght,FILL@20..48,100..700,0..1&display=swap" rel="stylesheet"/>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="views.css">
<script src="theme.js"></script>
</head>
<body>
<!-- Top Bar -->
<nav class="top-bar">
<div class="top-bar-left">
<a href="index.html" class="brand">foodAI</a>
<div class="top-bar-tabs">
<a href="index.html" class="tab-link">Library</a>
<a href="mapa.html" class="tab-link">Literature Map</a>
</div>
</div>
<div class="top-bar-right">
<div class="top-bar-search">
<span class="material-symbols-outlined search-icon">search</span>
<input type="text" id="author-search" placeholder="Search authors...">
</div>
<button id="theme-toggle" class="icon-btn theme-toggle" type="button" aria-label="Toggle theme"></button>
</div>
</nav>
<div class="app-layout">
<!-- Sidebar -->
<aside class="sidebar">
<div class="sidebar-header">
<h2 class="sidebar-title">Observatory</h2>
<p class="sidebar-subtitle">GenAI in AgriFood</p>
</div>
<nav class="sidebar-nav">
<a href="index.html" class="sidebar-link">
<span class="material-symbols-outlined">book_2</span>
<span>Library</span>
</a>
<a href="mapa.html" class="sidebar-link">
<span class="material-symbols-outlined">map</span>
<span>Literature Map</span>
</a>
<a href="authors.html" class="sidebar-link sidebar-link--active">
<span class="material-symbols-outlined">group</span>
<span>Authors</span>
</a>
<a href="topics.html" class="sidebar-link">
<span class="material-symbols-outlined">biotech</span>
<span>Topics</span>
</a>
</nav>
<!-- Stats Panel -->
<div class="sidebar-stats">
<div class="stat-item">
<span class="stat-label">Unique Authors</span>
<span class="stat-value stat-value--lg" id="stat-authors">--</span>
</div>
<div class="stat-item">
<span class="stat-label">Total Papers</span>
<span class="stat-value" id="stat-total">--</span>
</div>
</div>
</aside>
<!-- Main Content -->
<div class="main-content">
<section class="hero">
<span class="hero-eyebrow">Researcher Network</span>
<h1 class="hero-title">Authors</h1>
<p class="hero-description">Researchers contributing to Generative AI in the AgriFood sector, ranked by number of publications in this review.</p>
</section>
<!-- Sort controls -->
<section class="view-controls">
<div class="view-sort">
<label class="filter-label">Sort by</label>
<select id="sort-authors" class="filter-select">
<option value="papers">Number of papers</option>
<option value="name">Alphabetical</option>
<option value="recent">Most recent</option>
</select>
</div>
<span class="view-count" id="showing-count"></span>
</section>
<!-- Author list -->
<main id="author-list" class="view-list"></main>
<footer>
<p>© 2026 | Research by <a href="https://www.linkedin.com/in/beatrizvallina/" target="_blank" rel="noopener noreferrer">Beatriz Vallina</a></p>
<p>Agrifood Economics, Universitat Politècnica de València</p>
</footer>
</div>
</div>
<!-- Mobile Bottom Nav -->
<nav class="mobile-nav">
<a href="index.html" class="mobile-nav-item">
<span class="material-symbols-outlined">book_2</span>
<span>Library</span>
</a>
<a href="mapa.html" class="mobile-nav-item">
<span class="material-symbols-outlined">map</span>
<span>Lit Map</span>
</a>
<a href="authors.html" class="mobile-nav-item mobile-nav-item--active">
<span class="material-symbols-outlined">group</span>
<span>Authors</span>
</a>
<a href="topics.html" class="mobile-nav-item">
<span class="material-symbols-outlined">biotech</span>
<span>Topics</span>
</a>
</nav>
<script src="authors.js"></script>
</body>
</html>