« Accueil » : différence entre les versions
Aucun résumé des modifications |
|||
| Ligne 1 : | Ligne 1 : | ||
<!DOCTYPE html> | |||
<html lang="fr"> | |||
<head> | |||
<meta charset="UTF-8"> | |||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
<title>Wiki Applications - CERPEG</title> | |||
<style> | |||
* { | |||
margin: 0; | |||
padding: 0; | |||
box-sizing: border-box; | |||
} | |||
body { | |||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; | |||
line-height: 1.6; | |||
color: #333; | |||
background-color: #fafafa; | |||
} | |||
.container { | |||
max-width: 1200px; | |||
margin: 0 auto; | |||
background: white; | |||
min-height: 100vh; | |||
box-shadow: 0 0 10px rgba(0,0,0,0.05); | |||
} | |||
.header { | |||
background-color: #2c3e50; | |||
color: white; | |||
padding: 2rem; | |||
text-align: center; | |||
border-bottom: 3px solid #34495e; | |||
} | |||
.header h1 { | |||
font-size: 2.2rem; | |||
font-weight: 300; | |||
margin-bottom: 0.5rem; | |||
letter-spacing: 1px; | |||
} | |||
.header p { | |||
font-size: 1rem; | |||
opacity: 0.9; | |||
font-weight: 300; | |||
} | |||
.youtube-banner { | |||
background-color: #e8f4fd; | |||
border-left: 4px solid #3498db; | |||
padding: 1rem 2rem; | |||
margin: 0; | |||
text-align: center; | |||
} | |||
.youtube-banner a { | |||
color: #2980b9; | |||
text-decoration: none; | |||
font-weight: 500; | |||
} | |||
.youtube-banner a:hover { | |||
text-decoration: underline; | |||
} | |||
.main-content { | |||
padding: 3rem 2rem; | |||
} | |||
.section { | |||
margin-bottom: 4rem; | |||
} | |||
.section h2 { | |||
color: #2c3e50; | |||
font-size: 1.5rem; | |||
font-weight: 400; | |||
margin-bottom: 2rem; | |||
padding-bottom: 0.5rem; | |||
border-bottom: 2px solid #ecf0f1; | |||
} | |||
'''''Auteur : Fabienne Mauri - Académie de Bordeaux | .grid { | ||
display: grid; | |||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); | |||
gap: 1.5rem; | |||
} | |||
.item { | |||
background: #fdfdfd; | |||
border: 1px solid #e1e8ed; | |||
padding: 1.5rem; | |||
border-radius: 4px; | |||
transition: border-color 0.2s ease; | |||
} | |||
.item:hover { | |||
border-color: #3498db; | |||
} | |||
.item h3 { | |||
color: #2c3e50; | |||
font-size: 1.1rem; | |||
font-weight: 500; | |||
margin-bottom: 0.8rem; | |||
} | |||
.item p { | |||
color: #7f8c8d; | |||
font-size: 0.9rem; | |||
line-height: 1.5; | |||
} | |||
.divider { | |||
height: 1px; | |||
background-color: #ecf0f1; | |||
margin: 3rem 0; | |||
} | |||
.footer { | |||
background-color: #34495e; | |||
color: #bdc3c7; | |||
padding: 2rem; | |||
text-align: center; | |||
font-size: 0.9rem; | |||
} | |||
.footer a { | |||
color: #3498db; | |||
text-decoration: none; | |||
} | |||
.footer a:hover { | |||
text-decoration: underline; | |||
} | |||
.news-section { | |||
background-color: #f8f9fa; | |||
border: 1px solid #e9ecef; | |||
padding: 2rem; | |||
margin-bottom: 3rem; | |||
border-radius: 4px; | |||
} | |||
.news-section h2 { | |||
color: #495057; | |||
margin-bottom: 1.5rem; | |||
border-bottom: 2px solid #dee2e6; | |||
} | |||
.news-item { | |||
padding: 0.8rem 0; | |||
border-bottom: 1px solid #e9ecef; | |||
font-size: 0.95rem; | |||
} | |||
.news-item:last-child { | |||
border-bottom: none; | |||
} | |||
.news-item strong { | |||
color: #2c3e50; | |||
} | |||
@media (max-width: 768px) { | |||
.main-content { | |||
padding: 2rem 1rem; | |||
} | |||
.header { | |||
padding: 1.5rem 1rem; | |||
} | |||
.header h1 { | |||
font-size: 1.8rem; | |||
} | |||
.grid { | |||
grid-template-columns: 1fr; | |||
gap: 1rem; | |||
} | |||
.item { | |||
padding: 1.2rem; | |||
} | |||
} | |||
.section-title { | |||
display: flex; | |||
align-items: center; | |||
gap: 0.5rem; | |||
} | |||
.icon { | |||
font-size: 1.2rem; | |||
} | |||
ul { | |||
list-style: none; | |||
} | |||
.simple-list { | |||
display: flex; | |||
flex-direction: column; | |||
gap: 0.8rem; | |||
} | |||
.simple-list li { | |||
padding: 1rem; | |||
background: #fdfdfd; | |||
border-left: 3px solid #3498db; | |||
border-radius: 0 4px 4px 0; | |||
} | |||
.simple-list li:hover { | |||
background: #f8f9fa; | |||
} | |||
.simple-list strong { | |||
color: #2c3e50; | |||
display: block; | |||
margin-bottom: 0.3rem; | |||
} | |||
</style> | |||
</head> | |||
<body> | |||
<div class="container"> | |||
<header class="header"> | |||
<h1>Wiki Applications</h1> | |||
<p>Ressources pédagogiques pour logiciels métiers et applications</p> | |||
</header> | |||
<div class="youtube-banner"> | |||
<p><strong>Chaîne YouTube :</strong> <a href="https://www.youtube.com/channel/UC6jJV3AjVtgyLGKFI715R1Q" target="_blank">Abonnez-vous pour suivre nos tutoriels vidéo</a></p> | |||
</div> | |||
<main class="main-content"> | |||
<div class="news-section"> | |||
<h2>Actualités des publications</h2> | |||
<div class="news-item"> | |||
<strong>WordPress</strong> - Les widgets et les extensions | |||
</div> | |||
<div class="news-item"> | |||
<strong>OdooV14</strong> - La ventilation de la TVA collectée | |||
</div> | |||
<div class="news-item"> | |||
<strong>WordPress</strong> - L'embarquement d'un flux RSS | |||
</div> | |||
<div class="news-item"> | |||
<strong>WooCommerce</strong> - L'affichage des produits sur le site | |||
</div> | |||
<div class="news-item"> | |||
<strong>OdooV14</strong> - 4 Bases de données avec intégration du site Web vitrine et e-commerce | |||
</div> | |||
<div class="news-item"> | |||
<strong>OdooV14</strong> - La publication d'offres d'emploi sur le site vitrine | |||
</div> | |||
<div class="news-item"> | |||
<strong>OdooV14</strong> - Le suivi du recrutement de personnel | |||
</div> | |||
</div> | |||
<section class="section"> | |||
<h2>Tutoriels - Logiciels métiers</h2> | |||
<div class="grid"> | |||
<div class="item"> | |||
<h3>PGI - Odoo</h3> | |||
<p>OdooV8, OdooV11 et actualisation en OdooV14</p> | |||
</div> | |||
<div class="item"> | |||
<h3>C.M.S - WordPress</h3> | |||
<p>Gestionnaire de contenu</p> | |||
</div> | |||
<div class="item"> | |||
<h3>E-commerce WordPress</h3> | |||
<p>WooCommerce</p> | |||
</div> | |||
<div class="item"> | |||
<h3>Magasins en ligne</h3> | |||
<p>PrestaShop E-commerce</p> | |||
</div> | |||
<div class="item"> | |||
<h3>Espaces collaboratifs</h3> | |||
<p>Outils de travail collaboratif</p> | |||
</div> | |||
<div class="item"> | |||
<h3>Gestion de projet</h3> | |||
<p>Méthodologies et outils de gestion</p> | |||
</div> | |||
<div class="item"> | |||
<h3>Questionnaire en ligne</h3> | |||
<p>LimeSurvey</p> | |||
</div> | |||
<div class="item"> | |||
<h3>Téléphone 3CX</h3> | |||
<p>Solution de téléphonie IP</p> | |||
</div> | |||
</div> | |||
</section> | |||
<div class="divider"></div> | |||
<section class="section"> | |||
<h2>Tutoriels - Logiciels médias</h2> | |||
<div class="grid"> | |||
<div class="item"> | |||
<h3>PAINT.NET</h3> | |||
<p>Logiciel d'édition et de retouche d'image FACILE</p> | |||
</div> | |||
<div class="item"> | |||
<h3>GIMP</h3> | |||
<p>Logiciel d'édition et de retouche d'image EXPERT</p> | |||
</div> | |||
<div class="item"> | |||
<h3>Capture d'écran</h3> | |||
<p>Logiciel de capture d'écran</p> | |||
</div> | |||
<div class="item"> | |||
<h3>Shotcut</h3> | |||
<p>Logiciel de montage vidéo</p> | |||
</div> | |||
<div class="item"> | |||
<h3>Audacity</h3> | |||
<p>Logiciel de gestion de l'audio</p> | |||
</div> | |||
<div class="item"> | |||
<h3>ScreenVideo</h3> | |||
<p>Applications pour filmer son écran</p> | |||
</div> | |||
</div> | |||
</section> | |||
<div class="divider"></div> | |||
<section class="section"> | |||
<h2>Ressources</h2> | |||
<div class="grid"> | |||
<div class="item"> | |||
<h3>Aide utile</h3> | |||
<p>Conseils et astuces pratiques</p> | |||
</div> | |||
<div class="item"> | |||
<h3>Médias</h3> | |||
<p>Ressources multimédias</p> | |||
</div> | |||
<div class="item"> | |||
<h3>Typographie</h3> | |||
<p>L'essentiel de la typographie</p> | |||
</div> | |||
<div class="item"> | |||
<h3>Réseaux Sociaux</h3> | |||
<p>Guide des bonnes pratiques</p> | |||
</div> | |||
<div class="item"> | |||
<h3>Sécurité</h3> | |||
<p>Sécurité informatique</p> | |||
</div> | |||
<div class="item"> | |||
<h3>Bazar</h3> | |||
<p>Aide à la construction de scénarios</p> | |||
</div> | |||
</div> | |||
</section> | |||
<div class="divider"></div> | |||
<section class="section"> | |||
<h2>Odoo Support</h2> | |||
<div class="simple-list"> | |||
<li> | |||
<strong>Bases de données Odoo</strong> | |||
Configuration générale | |||
</li> | |||
<li> | |||
<strong>Bases de données Odoo V14</strong> | |||
Version 14 spécifique | |||
</li> | |||
<li> | |||
<strong>Bases de données Odoo V16</strong> | |||
Dernière version disponible | |||
</li> | |||
</div> | |||
</section> | |||
</main> | |||
<footer class="footer"> | |||
<p><strong>Auteur :</strong> Fabienne Mauri - Académie de Bordeaux</p> | |||
<p><a href="http://lp-henribrulle.fr/" target="_blank">Lycée Professionnel Henri Brulle</a></p> | |||
</footer> | |||
</div> | |||
</body> | |||
</html> | |||
Version du 1 septembre 2025 à 08:17
<!DOCTYPE html> <html lang="fr"> <head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wiki Applications - CERPEG</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background-color: #fafafa;
}
.container {
max-width: 1200px;
margin: 0 auto;
background: white;
min-height: 100vh;
box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.header {
background-color: #2c3e50;
color: white;
padding: 2rem;
text-align: center;
border-bottom: 3px solid #34495e;
}
.header h1 {
font-size: 2.2rem;
font-weight: 300;
margin-bottom: 0.5rem;
letter-spacing: 1px;
}
.header p {
font-size: 1rem;
opacity: 0.9;
font-weight: 300;
}
.youtube-banner {
background-color: #e8f4fd;
border-left: 4px solid #3498db;
padding: 1rem 2rem;
margin: 0;
text-align: center;
}
.youtube-banner a {
color: #2980b9;
text-decoration: none;
font-weight: 500;
}
.youtube-banner a:hover {
text-decoration: underline;
}
.main-content {
padding: 3rem 2rem;
}
.section {
margin-bottom: 4rem;
}
.section h2 {
color: #2c3e50;
font-size: 1.5rem;
font-weight: 400;
margin-bottom: 2rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid #ecf0f1;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.item {
background: #fdfdfd;
border: 1px solid #e1e8ed;
padding: 1.5rem;
border-radius: 4px;
transition: border-color 0.2s ease;
}
.item:hover {
border-color: #3498db;
}
.item h3 {
color: #2c3e50;
font-size: 1.1rem;
font-weight: 500;
margin-bottom: 0.8rem;
}
.item p {
color: #7f8c8d;
font-size: 0.9rem;
line-height: 1.5;
}
.divider {
height: 1px;
background-color: #ecf0f1;
margin: 3rem 0;
}
.footer {
background-color: #34495e;
color: #bdc3c7;
padding: 2rem;
text-align: center;
font-size: 0.9rem;
}
.footer a {
color: #3498db;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
.news-section {
background-color: #f8f9fa;
border: 1px solid #e9ecef;
padding: 2rem;
margin-bottom: 3rem;
border-radius: 4px;
}
.news-section h2 {
color: #495057;
margin-bottom: 1.5rem;
border-bottom: 2px solid #dee2e6;
}
.news-item {
padding: 0.8rem 0;
border-bottom: 1px solid #e9ecef;
font-size: 0.95rem;
}
.news-item:last-child {
border-bottom: none;
}
.news-item strong {
color: #2c3e50;
}
@media (max-width: 768px) {
.main-content {
padding: 2rem 1rem;
}
.header {
padding: 1.5rem 1rem;
}
.header h1 {
font-size: 1.8rem;
}
.grid {
grid-template-columns: 1fr;
gap: 1rem;
}
.item {
padding: 1.2rem;
}
}
.section-title {
display: flex;
align-items: center;
gap: 0.5rem;
}
.icon {
font-size: 1.2rem;
}
ul {
list-style: none;
}
.simple-list {
display: flex;
flex-direction: column;
gap: 0.8rem;
}
.simple-list li {
padding: 1rem;
background: #fdfdfd;
border-left: 3px solid #3498db;
border-radius: 0 4px 4px 0;
}
.simple-list li:hover {
background: #f8f9fa;
}
.simple-list strong {
color: #2c3e50;
display: block;
margin-bottom: 0.3rem;
}
</style>
</head> <body>
<header class="header">
Wiki Applications
Ressources pédagogiques pour logiciels métiers et applications
</header>
<main class="main-content">
Actualités des publications
WordPress - Les widgets et les extensions
OdooV14 - La ventilation de la TVA collectée
WordPress - L'embarquement d'un flux RSS
WooCommerce - L'affichage des produits sur le site
OdooV14 - 4 Bases de données avec intégration du site Web vitrine et e-commerce
OdooV14 - La publication d'offres d'emploi sur le site vitrine
OdooV14 - Le suivi du recrutement de personnel
<section class="section">
Tutoriels - Logiciels métiers
PGI - Odoo
OdooV8, OdooV11 et actualisation en OdooV14
C.M.S - WordPress
Gestionnaire de contenu
E-commerce WordPress
WooCommerce
Magasins en ligne
PrestaShop E-commerce
Espaces collaboratifs
Outils de travail collaboratif
Gestion de projet
Méthodologies et outils de gestion
Questionnaire en ligne
LimeSurvey
Téléphone 3CX
Solution de téléphonie IP
</section>
<section class="section">
Tutoriels - Logiciels médias
PAINT.NET
Logiciel d'édition et de retouche d'image FACILE
GIMP
Logiciel d'édition et de retouche d'image EXPERT
Capture d'écran
Logiciel de capture d'écran
Shotcut
Logiciel de montage vidéo
Audacity
Logiciel de gestion de l'audio
ScreenVideo
Applications pour filmer son écran
</section>
<section class="section">
Ressources
Aide utile
Conseils et astuces pratiques
Médias
Ressources multimédias
Typographie
L'essentiel de la typographie
Réseaux Sociaux
Guide des bonnes pratiques
Sécurité
Sécurité informatique
Bazar
Aide à la construction de scénarios
</section>
<section class="section">
Odoo Support
</section>
</main>
<footer class="footer">
Auteur : Fabienne Mauri - Académie de Bordeaux
<a href="http://lp-henribrulle.fr/" target="_blank">Lycée Professionnel Henri Brulle</a>
</footer>
</body> </html>
