-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from mailhexu/main
Add an ABI-Logix description page and hide it in developer's corner for the moment
- Loading branch information
Showing
6 changed files
with
140 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>ABINIT</title> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" crossorigin="anonymous" /> | ||
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="./styles.css" rel="stylesheet"> <!-- Link to your | ||
external CSS file --> | ||
</head> | ||
|
||
<body> | ||
<div class="burger-menu" onclick="toggleMenu()">☰</div> | ||
<div class="icon-container"> | ||
<div class="icon-row"> | ||
<div > | ||
<a href="./index.html"> | ||
<img alt="ABINIT" src="./logo/logo.png" class="logo" | ||
title="" height="100" /> | ||
<span class="title"></span> | ||
</a> | ||
</div> | ||
|
||
</div> | ||
|
||
<div class="icon-row"> | ||
<div class="icon"> | ||
<a href="./pseudopotential.html"> | ||
<img alt="Pseudo and atomic data" class="icon" src="./img/Pseudos.png" title="pseudopotential" /> | ||
<span class="title">Pseudos & PAW data</span> | ||
</a> | ||
</div> | ||
<div class="icon"> | ||
<a href="https://docs.abinit.org/variables"> | ||
<img alt="input variables" class="icon" src="./img/input_variables.png" title="Input variables" /> | ||
<span class="title">Input variables</span> | ||
</a> | ||
</div> | ||
<div class="icon"> | ||
<a href="https://docs.abinit.org/tutorial/"> | ||
<img alt="Tutorials" class="icon" src="./img/Tutorials.png" title="Tutorials" /> | ||
<span class="title">Tutorials</span> | ||
</a> | ||
</div> | ||
<div class="icon"> | ||
<a href="https://discourse.abinit.org/"> | ||
<img alt="Forum" class="icon" src="./img/Forum.png" title="Forum" /> | ||
<span class="title">Forum</span> | ||
</a> | ||
</div> | ||
<div class="icon"> | ||
<a href="https://github.com/abinit/abinit/releases/latest"> | ||
<img alt="Download" class="icon" src="./img/Download.png" title="Download" /> | ||
<span class="title">Download</span> | ||
</a> | ||
</div> | ||
<div class="icon"> | ||
<a href="https://docs.abinit.org/installation/"> | ||
<img alt="Compile" class="icon" src="./img/Compile.png" title="Compile" /> | ||
<span class="title">Compile</span> | ||
</a> | ||
</div> | ||
<div class="icon"> | ||
<a href="https://github.com/abinit"> | ||
<img alt="GitHub" class="icon" src="./img/git.png" title="GitHub" /> | ||
<span class="title">GitHub</span> | ||
</a> | ||
</div> | ||
<div class="icon"> | ||
<a href="https://gui.abinit.org/"> | ||
<img alt="GUI" class="icon" src="./img/gui.png" title="GUI" /> | ||
<span class="title">GUI</span> | ||
</a> | ||
</div> | ||
<div class="icon"> | ||
<a href="https://github.com/abinit/abipy"> | ||
<img alt="abipy" class="icon" src="./img/abipy.png" title="abipy" /> | ||
<span class="title">Abipy</span> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
<script> | ||
function toggleMenu() { | ||
const iconContainer = document.querySelector('.icon-container'); | ||
iconContainer.classList.toggle('active'); | ||
} | ||
</script> | ||
|
||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
|
||
<div class="separator-line1"></div> | ||
|
||
<div | ||
class="field field--name-body field--type-text-with-summary field--label-hidden field--item content-margin" | ||
style="margin-left: 15%; margin-right: 10%;"> | ||
<div class="separator"> </div> | ||
|
||
<h2>ABI-Logix Consortium</h2> | ||
|
||
<p>ABI-Logix is a consortium of institutions which committed to provide logistic and technical support to the ABINIT software. Its role is to act as a functional interface between the Advisory Board, the Developers and the Users. As such it helps to coordinate the maintenance and development tasks of the software.</p> | ||
<p>The partners in the ABI-Logix consortium include:</p> | ||
|
||
<ul> | ||
<li> | ||
<a href="https://uclouvain.be">UCLouvain</a> | ||
<img src="sponsors/logo_uclouvain.png" alt="UCLouvain logo" class="logo"> | ||
<p>Representatives: Xavier Gonze, Gian-Marco Rignanese</p> | ||
</li> | ||
<li> | ||
<a href="https://www.uliege.be">ULiège</a> | ||
<img src="sponsors/logo_uliege.png" alt="ULiège logo" class="logo"> | ||
<p>Representatives: Philippe Ghosez (chairman), Matthieu Verstraete</p> | ||
</li> | ||
<li> | ||
<a href="https://www.unamur.be">UNamur</a> | ||
<img src="sponsors/logo_unamur.png" alt="UNamur logo" class="logo"> | ||
<p>Representative: Luc Henrart</p> | ||
</li> | ||
<li> | ||
<a href="https://www.cea.fr">CEA</a> | ||
<img src="sponsors/logo_cea.png" alt="CEA logo" class="logo"> | ||
<p>Representatives: Marc Torrent, Bernard Amadon</p> | ||
</li> | ||
</ul> | ||
|
||
<hr> | ||
</div> | ||
|
||
<script src="abinit_info_download.js"></script> | ||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.