Skip to content

Commit 7f07daa

Browse files
committed
Updated to using hugo interface
1 parent 74be3b0 commit 7f07daa

8 files changed

Lines changed: 236 additions & 154 deletions

File tree

categories/index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Categories – MAP Collaboration</title>
8+
<link rel="stylesheet" href="../css/style.css">
9+
</head>
10+
11+
<body>
12+
<div class="container">
13+
14+
<h1>Categories</h1>
15+
<ul>
16+
17+
</ul>
18+
19+
</div>
20+
</body>
21+
22+
</html>

categories/index.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
2+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
3+
<channel>
4+
<title>Categories on MAP collaboration website</title>
5+
<link>https://mapcollaboration.github.io/categories/index.html</link>
6+
<description>Recent content in Categories on MAP collaboration website</description>
7+
<generator>Hugo</generator>
8+
<language>en-us</language>
9+
<atom:link href="https://mapcollaboration.github.io/categories/index.xml" rel="self" type="application/rss+xml" />
10+
</channel>
11+
</rss>

css/style.css

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
2+
/*
3+
Body & Background:
4+
- Warm gradient
5+
- Open Sans font
6+
*/
7+
body {
8+
margin: 0;
9+
padding: 0;
10+
background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
11+
font-family: "Open Sans", Arial, sans-serif;
12+
color: #333;
13+
}
14+
15+
/*
16+
Container for main content:
17+
- Centered, white background, some padding, box shadow
18+
*/
19+
.container {
20+
max-width: 800px;
21+
margin: 60px auto;
22+
background-color: #fff;
23+
border-radius: 8px;
24+
padding: 30px;
25+
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
26+
}
27+
28+
/* Optional logo */
29+
.logo {
30+
display: block;
31+
margin: 0 auto 20px auto;
32+
max-width: 150px;
33+
}
34+
35+
/* Headings: Keep them centered for a clean visual style */
36+
h1 {
37+
margin-top: 0;
38+
font-weight: 700;
39+
color: #e65100;
40+
text-align: center;
41+
font-size: 32px;
42+
}
43+
44+
h2 {
45+
margin-top: 10px;
46+
font-weight: 400;
47+
color: #888;
48+
text-align: center;
49+
font-size: 20px;
50+
}
51+
52+
/*
53+
Paragraphs:
54+
- Justified text for a “newspaper column” effect
55+
- Separated margins
56+
- Constrain width for readability
57+
*/
58+
p {
59+
font-size: 18px;
60+
line-height: 1.6;
61+
text-align: justify;
62+
margin: 20px auto;
63+
max-width: 600px;
64+
}
65+
66+
/* Center-align welcome paragraph */
67+
.welcome {
68+
text-align: center;
69+
}
70+
71+
/*
72+
Lists:
73+
- No bullet style
74+
- Left-aligned
75+
- Spaced out list items
76+
*/
77+
ul {
78+
list-style-type: none;
79+
padding: 0;
80+
margin: 30px auto;
81+
max-width: 600px;
82+
/* Keep in line with the paragraph width if you like */
83+
text-align: left;
84+
/* Start from the left */
85+
}
86+
87+
li {
88+
margin: 16px 0;
89+
}
90+
91+
/*
92+
Links:
93+
- Blue color, become orange on hover
94+
*/
95+
a {
96+
text-decoration: none;
97+
font-size: 20px;
98+
font-weight: 500;
99+
color: #007acc;
100+
transition: color 0.3s ease;
101+
}
102+
103+
a:hover {
104+
color: #d84315;
105+
}
106+
107+
/*
108+
Footer:
109+
- Centered
110+
- Smaller text
111+
- Soft color
112+
*/
113+
footer {
114+
text-align: center;
115+
margin-top: 40px;
116+
color: #666;
117+
font-size: 14px;
118+
}

index.html

Lines changed: 30 additions & 154 deletions
Original file line numberDiff line numberDiff line change
@@ -1,161 +1,37 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6-
<title>MAP Collaboration – Homepage</title>
7-
8-
<style>
9-
/*
10-
Body & Background:
11-
- Warm gradient
12-
- Open Sans font
13-
*/
14-
body {
15-
margin: 0;
16-
padding: 0;
17-
background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
18-
font-family: "Open Sans", Arial, sans-serif;
19-
color: #333;
20-
}
21-
22-
/*
23-
Container for main content:
24-
- Centered, white background, some padding, box shadow
25-
*/
26-
.container {
27-
max-width: 800px;
28-
margin: 60px auto;
29-
background-color: #fff;
30-
border-radius: 8px;
31-
padding: 30px;
32-
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
33-
}
34-
35-
/* Optional logo */
36-
.logo {
37-
display: block;
38-
margin: 0 auto 20px auto;
39-
max-width: 150px;
40-
}
41-
42-
/* Headings: Keep them centered for a clean visual style */
43-
h1 {
44-
margin-top: 0;
45-
font-weight: 700;
46-
color: #e65100;
47-
text-align: center;
48-
font-size: 32px;
49-
}
50-
51-
h2 {
52-
margin-top: 10px;
53-
font-weight: 400;
54-
color: #888;
55-
text-align: center;
56-
font-size: 20px;
57-
}
58-
59-
/*
60-
Paragraphs:
61-
- Justified text for a “newspaper column” effect
62-
- Separated margins
63-
- Constrain width for readability
64-
*/
65-
p {
66-
font-size: 18px;
67-
line-height: 1.6;
68-
text-align: justify;
69-
margin: 20px auto;
70-
max-width: 600px;
71-
}
72-
73-
/* Center-align welcome paragraph */
74-
.welcome {
75-
text-align: center;
76-
}
77-
78-
/*
79-
Lists:
80-
- No bullet style
81-
- Left-aligned
82-
- Spaced out list items
83-
*/
84-
ul {
85-
list-style-type: none;
86-
padding: 0;
87-
margin: 30px auto;
88-
max-width: 600px; /* Keep in line with the paragraph width if you like */
89-
text-align: left; /* Start from the left */
90-
}
913

92-
li {
93-
margin: 16px 0;
94-
}
95-
96-
/*
97-
Links:
98-
- Blue color, become orange on hover
99-
*/
100-
a {
101-
text-decoration: none;
102-
font-size: 20px;
103-
font-weight: 500;
104-
color: #007acc;
105-
transition: color 0.3s ease;
106-
}
107-
108-
a:hover {
109-
color: #d84315;
110-
}
111-
112-
/*
113-
Footer:
114-
- Centered
115-
- Smaller text
116-
- Soft color
117-
*/
118-
footer {
119-
text-align: center;
120-
margin-top: 40px;
121-
color: #666;
122-
font-size: 14px;
123-
}
124-
</style>
4+
<head>
5+
<meta name="generator" content="Hugo 0.148.1">
6+
<meta charset="UTF-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<title>The MAP Collaboration – MAP Collaboration</title>
9+
<link rel="stylesheet" href="./css/style.css">
12510
</head>
126-
<body>
127-
<div class="container">
128-
<!-- Optional logo image -->
129-
<!-- <img src="path/to/logo.png" alt="MAP Collaboration Logo" class="logo"> -->
13011

131-
<h1>The MAP Collaboration</h1>
132-
<h2>Multi-dimensional Analyses of Partonic Distributions</h2>
133-
134-
<!-- Make "Welcome!" a separate, centered paragraph -->
135-
<p class="welcome">
136-
Welcome!
137-
</p>
138-
<p>
139-
The MAP Collaboration conducts multi-dimensional analyses of partonic
140-
distributions through cutting-edge techniques and data-driven approaches.
141-
Key objects of study include Transverse Momentum Distributions (TMDs),
142-
Generalized Parton Distributions (GPDs), and Fragmentation Functions (FFs).
143-
</p>
144-
<p>
145-
Click on the links below to see the reports of some of our latest results.
146-
</p>
147-
148-
<ul>
149-
<li> &#128391; <a href="Results/TMDNN/NN.html">Neural Network fit</a></li>
150-
<li> &#128391; <a href="Results/TMDNN/MAP22.html">MAP22 Drell-Yan fit</a></li>
151-
</ul>
152-
153-
<!-- Make footer a separate, centered paragraph -->
154-
<footer>
155-
<p class="welcome">
156-
&copy; 2025 The MAP Collaboration. </p>
157-
</footer>
158-
</div>
12+
<body>
13+
<div class="container">
14+
15+
<h1>MAP collaboration website</h1>
16+
<div class="content">
17+
<p>Welcome!</p>
18+
<p>The MAP Collaboration conducts multi-dimensional analyses of partonic
19+
distributions through cutting-edge techniques and data-driven approaches.</p>
20+
<p>Key objects of study include:</p>
21+
<ul>
22+
<li>Transverse Momentum Distributions (TMDs)</li>
23+
<li>Generalized Parton Distributions (GPDs)</li>
24+
<li>Fragmentation Functions (FFs)</li>
25+
</ul>
26+
<p>Click on the links below to see reports of some of our latest results:</p>
27+
<ul>
28+
<li><a href="./Results/TMDNN/NN.html">Neural Network fit</a></li>
29+
<li><a href="./Results/TMDNN/MAP22.html">MAP22 Drell-Yan fit</a></li>
30+
</ul>
31+
32+
</div>
33+
34+
</div>
15935
</body>
160-
</html>
16136

37+
</html>

index.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
2+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
3+
<channel>
4+
<title>The MAP Collaboration on MAP collaboration website</title>
5+
<link>https://mapcollaboration.github.io/index.html</link>
6+
<description>Recent content in The MAP Collaboration on MAP collaboration website</description>
7+
<generator>Hugo</generator>
8+
<language>en-us</language>
9+
<atom:link href="https://mapcollaboration.github.io/index.xml" rel="self" type="application/rss+xml" />
10+
</channel>
11+
</rss>

sitemap.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
3+
xmlns:xhtml="http://www.w3.org/1999/xhtml">
4+
<url>
5+
<loc>https://mapcollaboration.github.io/categories/index.html</loc>
6+
</url><url>
7+
<loc>https://mapcollaboration.github.io/tags/index.html</loc>
8+
</url><url>
9+
<loc>https://mapcollaboration.github.io/index.html</loc>
10+
</url>
11+
</urlset>

tags/index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Tags – MAP Collaboration</title>
8+
<link rel="stylesheet" href="../css/style.css">
9+
</head>
10+
11+
<body>
12+
<div class="container">
13+
14+
<h1>Tags</h1>
15+
<ul>
16+
17+
</ul>
18+
19+
</div>
20+
</body>
21+
22+
</html>

0 commit comments

Comments
 (0)