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
// Exemple de boot AXIOS pour Quasar | |
import { boot } from 'quasar/wrappers' | |
import axios from 'axios' | |
// Initialisation de l'API | |
const monApi = axios.create({ | |
baseURL: 'https://mon.api.com/', | |
timeout: 30000, | |
headers: { |
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
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<!-- Jeu de caractères utilisé pour l'encodage du fichier HTML --> | |
<meta charset="UTF-8"> | |
<!-- Viewport --> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- Titre de la page --> | |
<title>Titre de la page | Nom du site</title> | |
<!-- Auteur --> |
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
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<!-- Jeu de caractères utilisé pour l'encodage du fichier HTML --> | |
<meta charset="UTF-8"> | |
<!-- Viewport --> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- Titre de la page --> | |
<title>Titre de la page | Nom du site</title> | |
<!-- Auteur --> |
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
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<!-- Jeu de caractères utilisé pour l'encodage du fichier HTML --> | |
<meta charset="UTF-8"> | |
<!-- Viewport --> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- Titre de la page --> | |
<title>Titre de la page | Nom du site</title> | |
<!-- Auteur --> |
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
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<!-- Jeu de caractères utilisé pour l'encodage du fichier HTML --> | |
<meta charset="UTF-8"> | |
<!-- Viewport --> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<!-- Titre de la page --> | |
<title>Titre de la page | Nom du site</title> | |
<!-- Auteur --> |
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
<!-- SFA : Ajouter titre principal --> | |
<p>Je suis un paragraphe</p> | |
<h2>Je suis un titre de niveau 2</h2> |
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
<?php | |
/** | |
* @package Hello_Dolly | |
* @version 1.6 | |
*/ | |
/* | |
Plugin Name: Hello Dolly | |
Plugin URI: http://wordpress.org/plugins/hello-dolly/ | |
Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page. | |
Author: Matt Mullenweg |
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
body { | |
margin : 0; | |
padding : 0; | |
font-size : 1.5em; | |
background-color: black; | |
} | |
a, a:visited { | |
color : #45B29D; | |
text-decoration : none; |
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
var villes = [ | |
"Porrentruy, CH", | |
"Delémont, CH", | |
"Lausanne, CH", | |
"Genève, CH", | |
"Sion, CH", | |
"Neuchâtel, CH", | |
"Fribourg, CH", | |
"Berne, CH", | |
"Zurich, CH", |
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
NameVirtualHost * | |
<VirtualHost *> | |
DocumentRoot "C:\xampp\htdocs" | |
ServerName localhost | |
</VirtualHost> | |
<VirtualHost *> | |
DocumentRoot "C:\mes-sites\yoda-shop\www" | |
ServerName yoda-shop.local | |