enspir-aime
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic links in README
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Unable to calculate vocabulary similarity
Last synced: 10 months ago
·
JSON representation
·
Repository
Basic Info
- Host: GitHub
- Owner: Ricky-rh
- Language: HTML
- Default Branch: main
- Size: 4.58 MB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Created 12 months ago
· Last pushed 12 months ago
Metadata Files
Citation
Owner
- Login: Ricky-rh
- Kind: user
- Repositories: 1
- Profile: https://github.com/Ricky-rh
Citation (citation.html)
<!DOCTYPE html>
<html lang="ht">
<head>
<meta charset="UTF-8" />
<title>Citations</title>
<style>
html, body {
height: 100%;
margin: 0;
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(135deg, #cfe9ff, #e6f3ff);
color: #333;
display: flex;
flex-direction: column;
}
.wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background-color: #d6e6ff;
color: rgb(37, 51, 205);
padding: 25px 20px;
text-align: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
header h1 {
margin: 0;
font-size: 2.4rem;
}
header a {
display: inline-block;
margin-top: 12px;
margin-right: 12px;
color: rgb(37, 51, 205);
font-weight: bold;
text-decoration: none;
font-size: 1rem;
}
header a:hover {
color: #100f0f;
text-decoration: underline;
}
main {
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 40px 20px;
text-align: center;
}
img {
max-width: 300px;
height: auto;
border-radius: 10px;
margin-bottom: 20px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
#citation {
font-size: 1.2em;
font-style: italic;
margin-bottom: 30px;
color: #333;
min-height: 50px;
}
button {
padding: 10px 20px;
font-size: 1em;
border: none;
background-color: #007BFF;
color: white;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
footer {
text-align: center;
padding: 20px;
font-size: 0.9rem;
color: #5938c5;
background-color: #f0f4ff;
}
</style>
</head>
<body>
<div class="wrapper">
<header>
<h1 id="page-title">Enspir'aime</h1>
<a href="../index.html">Accueil</a>
<a href="../projets.html">Réalisations</a>
</header>
<main>
<img id="image" src="media/5.jpg" alt="image" />
<div id="citation">La route nous libère.</div>
<button id="suivantBtn">Suivant</button>
</main>
<footer>
<p>© 2025 Frère Richard NAZAIRE, fms. Tous droits réservés - ©Maristes.</p>
</footer>
</div>
<script>
const images = [
"media/5.jpg",
"media/Logo Fatima_Color.jpg",
"media/Frat-Mar_Color.gif",
"media/hogar seguro color.jpeg",
"media/groupe.jpg",
"media/Marcelinito-scv.jpg",
"media/cap prov xvi - Copy.jpg",
"media/download.jpeg",
"media/Mural-MCH_Merida.JPG"
];
const colors = [
"#FFAAAA",
"#AAD4FF",
"#AAFFAA",
"#FFFFAA"
];
const citations = [
"La route nous libère.",
"Si vous voulez éduquer les enfants, commencez par les aimer.",
" Le Frère est un apôtre dans l’école, mais aussi dans la communauté, par sa vie fraternelle.",
" La prière n’est pas une fuite du monde, c’est une force pour le transformer. ",
"Je ne puis voir un enfant sans ressentir le désir de lui faire connaître combien Jésus-Christ l’a aimé. ",
"Si vous voulez éduquer les enfants, commencez par les aimer. ",
"Tout pour la plus grande gloire de Dieu et l'honneur de Marie, notre bonne Mère.",
"Dieu ne choisit pas les capables, mais il rend capables ceux qu’il choisit. ",
"Aime et fais ce que tu veux. "
];
let index = 0;
const imgElement = document.getElementById("image");
const citationElement = document.getElementById("citation");
const body = document.body;
const button = document.getElementById("suivantBtn");
button.addEventListener("click", () => {
index = (index + 1) % images.length;
imgElement.src = images[index];
citationElement.textContent = citations[index];
body.style.backgroundColor = colors[index];
});
</script>
</body>
</html>
GitHub Events
Total
- Push event: 5
- Create event: 1
Last Year
- Push event: 5
- Create event: 1