Skip to content

Commit ef7696a

Browse files
committed
Update homepage
1 parent e9f3a53 commit ef7696a

1 file changed

Lines changed: 119 additions & 51 deletions

File tree

docs/index.html

Lines changed: 119 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,126 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>EDIpack GitHub Pages</title>
7-
<style>
8-
body {
9-
font-family: Arial, sans-serif;
10-
text-align: center;
11-
padding: 50px;
12-
}
13-
h1 {
14-
color: #333;
15-
}
16-
ul {
17-
list-style-type: none;
18-
padding: 0;
19-
}
20-
li {
21-
margin: 10px 0;
22-
}
23-
a {
24-
text-decoration: none;
25-
color: #007bff;
26-
font-size: 18px;
27-
}
28-
a:hover {
29-
text-decoration: underline;
30-
}
31-
</style>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>EDIpack GitHub Pages</title>
7+
8+
<!-- Font Awesome icons -->
9+
<link rel="stylesheet"
10+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
11+
12+
<style>
13+
body {
14+
font-family: Arial, sans-serif;
15+
text-align: center;
16+
padding: 50px;
17+
}
18+
19+
h1 { color: #333; }
20+
21+
ul {
22+
list-style: none;
23+
padding: 0;
24+
}
25+
26+
li { margin: 10px 0; }
27+
28+
/* TEXT LINKS */
29+
a,
30+
a:visited,
31+
a:active,
32+
a:focus {
33+
text-decoration: none;
34+
color: #007bff;
35+
font-size: 18px;
36+
}
37+
38+
a:hover {
39+
text-decoration: underline;
40+
}
41+
42+
/* SOCIAL ICONS */
43+
.social-icons a,
44+
.social-icons a:visited,
45+
.social-icons a:active,
46+
.social-icons a:focus {
47+
text-decoration: none;
48+
font-size: 32px;
49+
margin: 0 12px;
50+
display: inline-block;
51+
transition: transform 0.2s ease;
52+
}
53+
54+
/* icon color handled here */
55+
.social-icons a i {
56+
color: #333;
57+
transition: color 0.2s ease;
58+
}
59+
60+
/* smooth scaling */
61+
.social-icons a:hover {
62+
transform: scale(1.15);
63+
}
64+
65+
/* hover colors (applied to icon) */
66+
.github:hover i {
67+
color: #000;
68+
}
69+
70+
.pypi:hover i {
71+
color: #3775A9;
72+
}
73+
74+
.conda:hover i {
75+
color: #44A833;
76+
}
77+
78+
</style>
3279
</head>
80+
3381
<body>
34-
<img src="https://github.com/EDIpack.png" alt="EDIpack logo" style="display: block; margin: 0 auto 30px auto; max-width: 300px; height: auto;">
35-
<h1>Welcome to EDIpack's GitHub Pages</h1>
36-
37-
<a href="https://github.com/EDIpack" target="_blank">Organization GitHub Homepage</a>
38-
39-
<h2>Project repositories</h2>
40-
<ul>
41-
<li><a href="https://github.com/EDIpack/EDIpack" target="_blank">EDIpack Fortran library</a></li>
42-
<li><a href="https://github.com/EDIpack/edipack2triqs" target="_blank">EDIpack - TRIQS compatibility layer</a></li>
43-
<li><a href="https://github.com/EDIpack/EDIpack2py" target="_blank">EDIpack2py Python module</a></li>
44-
</ul>
45-
46-
<h2>Documentation</h2>
47-
<ul>
48-
<li><a href="https://edipack.github.io/EDIpack/" target="_blank">EDIpack</a></li>
49-
<li><a href="https://edipack.github.io/edipack2triqs/" target="_blank">EDIpack - TRIQS compatibility layer</a></li>
50-
<li><a href="https://edipack.github.io/EDIpack2py/" target="_blank">EDIpack2py Python module</a></li>
51-
</ul>
52-
53-
<h2>External projects</h2>
54-
<ul>
55-
<li><a href="https://github.com/SciFortran" target="_blank"><strong>SciFortran</strong> scientific Fortran library</a></li>
56-
</ul>
82+
83+
<img src="https://github.com/EDIpack.png"
84+
alt="EDIpack logo"
85+
style="display:block; margin:0 auto 30px auto; max-width:300px; height:auto;">
86+
87+
<h1>Welcome to EDIpack's GitHub Pages</h1>
88+
89+
<!-- ICON LINKS -->
90+
<div class="social-icons">
91+
92+
<a class="github" href="https://github.com/EDIpack" target="_blank" title="EDIpack on GitHub">
93+
<i class="fab fa-github"></i>
94+
</a>
95+
96+
<a class="pypi" href="https://pypi.org/project/edipack2py/" target="_blank" title="EDIpack on PyPI">
97+
<i class="fab fa-python"></i>
98+
</a>
99+
100+
<a class="conda" href="https://anaconda.org/channels/EDIpack" target="_blank" title="EDIpack Anaconda channel">
101+
<i class="fas fa-circle-notch"></i>
102+
</a>
103+
104+
</div>
105+
106+
<h2>Project repositories</h2>
107+
<ul>
108+
<li><a href="https://github.com/EDIpack/EDIpack" target="_blank">EDIpack Fortran library</a></li>
109+
<li><a href="https://github.com/EDIpack/edipack2triqs" target="_blank">EDIpack - TRIQS compatibility layer</a></li>
110+
<li><a href="https://github.com/EDIpack/EDIpack2py" target="_blank">EDIpack2py Python module</a></li>
111+
</ul>
112+
113+
<h2>Documentation</h2>
114+
<ul>
115+
<li><a href="https://edipack.github.io/EDIpack/" target="_blank">EDIpack</a></li>
116+
<li><a href="https://edipack.github.io/edipack2triqs/" target="_blank">EDIpack - TRIQS compatibility layer</a></li>
117+
<li><a href="https://edipack.github.io/EDIpack2py/" target="_blank">EDIpack2py Python module</a></li>
118+
</ul>
119+
120+
<h2>External projects</h2>
121+
<ul>
122+
<li><a href="https://github.com/SciFortran" target="_blank"><strong>SciFortran</strong> scientific Fortran library</a></li>
123+
</ul>
124+
57125
</body>
58126
</html>

0 commit comments

Comments
 (0)