Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 3cf6d281 authored by peter_rabbit's avatar peter_rabbit
Browse files

article:installation kuadrado

parent e3f5a7c1
No related branches found
No related tags found
No related merge requests found
Showing
with 44 additions and 41 deletions
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
......@@ -10,10 +10,10 @@ module.exports = {
const { server_url } = require("./config");
module.exports = {
images_url: `${server_url}/assets/images`,
news_articles_url: `${server_url}/news-articles`,
game_articles_url: `${server_url}/game-articles`,
software_articles_url: `${server_url}/software-articles`,
images_url: `${server_url}assets/images`,
news_articles_url: `${server_url}news-articles`,
game_articles_url: `${server_url}game-articles`,
software_articles_url: `${server_url}software-articles`,
};
},{"./config":1}],3:[function(require,module,exports){
......
File mode changed from 100644 to 100755
......@@ -3,7 +3,8 @@ Un petit fantôme en quête d'identité va devoir gravir chaque étage d'un donj
Ce petit jeu de quête minimaliste en forme de labyrinthe sera jouable directement sur navigateur ou à télécharger sur pc.
Sortie prévue : Mars 2021 (si on y arrive !)
Concept original et graphismes : Lucie Ventadour ( http://lucipix.canalblog.com/||site_web ).
Programmation Javascript et bande son: Pierre Jarriges
- Concept original et graphismes : Lucie Ventadour (<a href="http://lucipix.canalblog.com/" target="_blank">site web</a>).
https://lab.frogg.it/peter_rabbit/fantom-quest||Dépôt_du_code_source
- Programmation Javascript et bande son: Pierre Jarriges
- <a href="https://lab.frogg.it/peter_rabbit/fantom-quest" target="_blank">Dépôt du code source</a>
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
Salut moi c'est lucette, je suis une geek et je vois la vie en pixels >< et ouais.
https://www.lucieventadour.com/||Mon_site | http://lucipix.canalblog.com/||Mon_blog_pix
\ No newline at end of file
Salut moi c'est Lu7, je suis une geek et je vois la vie en pixels >< !
<a href="https://www.lucieventadour.com/" target="_blank">Mon site</a>
<a href="http://lucipix.canalblog.com/" target="_blank">Mon blog pix</a>
\ No newline at end of file
Salut moi c'est pijar. Je fais des trucs.
J'aime bien le code.
Et je fais du dessin et tout.
\ No newline at end of file
Et je fais du dessin et tout.
<a href="http://pierrejarriges-dessins.blogsspot.com" target="_blank">Mon blog dessin</a>
\ No newline at end of file
File mode changed from 100644 to 100755
......@@ -10,10 +10,10 @@ module.exports = {
const { server_url } = require("./config");
module.exports = {
images_url: `${server_url}/assets/images`,
news_articles_url: `${server_url}/news-articles`,
game_articles_url: `${server_url}/game-articles`,
software_articles_url: `${server_url}/software-articles`,
images_url: `${server_url}assets/images`,
news_articles_url: `${server_url}news-articles`,
game_articles_url: `${server_url}game-articles`,
software_articles_url: `${server_url}software-articles`,
};
},{"./config":1}],3:[function(require,module,exports){
......@@ -92,16 +92,16 @@ const { fetchjson, fetchtext } = require("./fetch");
function getArticleBody(text) {
return text
.split(" ")
.map(word => {
if (word.includes("http://") || word.includes("https://")) {
const splitword = word.split("||");
const href = splitword[0].match(/http.+/);
const text = splitword.length > 1 ? splitword[1].replaceAll("_", " ") : href;
return word.replace(/http.*/, `<a href=${href} target="_blank">${text}</a>`);
} else return word;
})
.join(" ")
// .split(" ")
// .map(word => {
// if (word.includes("http://") || word.includes("https://")) {
// const splitword = word.split("||");
// const href = splitword[0].match(/http.+/);
// const text = splitword.length > 1 ? splitword[1].replaceAll("_", " ") : href;
// return word.replace(/http.*/, `<a href=${href} target="_blank">${text}</a>`);
// } else return word;
// })
// .join(" ")
.replaceAll("\n", "<br/>");
}
......
......@@ -10,10 +10,10 @@ module.exports = {
const { server_url } = require("./config");
module.exports = {
images_url: `${server_url}/assets/images`,
news_articles_url: `${server_url}/news-articles`,
game_articles_url: `${server_url}/game-articles`,
software_articles_url: `${server_url}/software-articles`,
images_url: `${server_url}assets/images`,
news_articles_url: `${server_url}news-articles`,
game_articles_url: `${server_url}game-articles`,
software_articles_url: `${server_url}software-articles`,
};
},{"./config":1}],3:[function(require,module,exports){
......@@ -352,7 +352,7 @@ class HomePage {
title: "Software",
img: "meca_proc.svg",
href: "/software-development/",
description: `Quand nous avons besoin d'un outil logiciel, nous aimons bien le fabriquer nous même si possible et si ça nous amuse !
description: `Quand nous avons besoin d'un outil numérique, développement web, moteur de jeux ou outillage logiciel, nous aimons bien le fabriquer nous-même si c'est possible ... et si ça nous amuse !
<br/>Retrouvez nos projets software en détail sur cette page.`,
},
{
......@@ -378,16 +378,16 @@ const { fetchjson, fetchtext } = require("./fetch");
function getArticleBody(text) {
return text
.split(" ")
.map(word => {
if (word.includes("http://") || word.includes("https://")) {
const splitword = word.split("||");
const href = splitword[0].match(/http.+/);
const text = splitword.length > 1 ? splitword[1].replaceAll("_", " ") : href;
return word.replace(/http.*/, `<a href=${href} target="_blank">${text}</a>`);
} else return word;
})
.join(" ")
// .split(" ")
// .map(word => {
// if (word.includes("http://") || word.includes("https://")) {
// const splitword = word.split("||");
// const href = splitword[0].match(/http.+/);
// const text = splitword.length > 1 ? splitword[1].replaceAll("_", " ") : href;
// return word.replace(/http.*/, `<a href=${href} target="_blank">${text}</a>`);
// } else return word;
// })
// .join(" ")
.replaceAll("\n", "<br/>");
}
......
{
"articles": ["test/article-test.json"]
"articles": ["installation-kuadrado/installation-kuadrado.json"]
}
public/news-articles/installation-kuadrado/images/atelier_bureau.jpg

47.1 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment