Feature #5: Mise à jour d'Ionicons
This commit is contained in:
parent
b9cca4bd59
commit
50694f94ce
21161
package-lock.json
generated
21161
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -27,16 +27,20 @@
|
|||||||
<title>Anthony Dumas</title>
|
<title>Anthony Dumas</title>
|
||||||
<!-- Matomo -->
|
<!-- Matomo -->
|
||||||
<script>
|
<script>
|
||||||
var _paq = window._paq = window._paq || [];
|
var _paq = (window._paq = window._paq || []);
|
||||||
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||||
_paq.push(['trackPageView']);
|
_paq.push(["trackPageView"]);
|
||||||
_paq.push(['enableLinkTracking']);
|
_paq.push(["enableLinkTracking"]);
|
||||||
(function() {
|
(function () {
|
||||||
var u="//matomo.adm.ink/";
|
var u = "//matomo.adm.ink/";
|
||||||
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
_paq.push(["setTrackerUrl", u + "matomo.php"]);
|
||||||
_paq.push(['setSiteId', '1']);
|
_paq.push(["setSiteId", "1"]);
|
||||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
var d = document,
|
||||||
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
g = d.createElement("script"),
|
||||||
|
s = d.getElementsByTagName("script")[0];
|
||||||
|
g.async = true;
|
||||||
|
g.src = u + "matomo.js";
|
||||||
|
s.parentNode.insertBefore(g, s);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
<!-- End Matomo Code -->
|
<!-- End Matomo Code -->
|
||||||
@ -51,5 +55,6 @@
|
|||||||
pour une version PDF.
|
pour une version PDF.
|
||||||
</noscript>
|
</noscript>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
|
<script src="https://unpkg.com/ionicons@latest/dist/ionicons.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,3 +1 @@
|
|||||||
@import "main.scss";
|
@import "main.scss";
|
||||||
@import "icon.scss";
|
|
||||||
@import "../css/ionicons.min.css";
|
|
||||||
|
@ -30,7 +30,6 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@import "../../node_modules/bulma/bulma";
|
@import "../../node_modules/bulma/bulma";
|
||||||
@import "icon";
|
|
||||||
|
|
||||||
#idCard {
|
#idCard {
|
||||||
.hero-body {
|
.hero-body {
|
||||||
|
@ -12,7 +12,7 @@ export default class ButtonIcon extends Component {
|
|||||||
return <a rel="noopener noreferrer" href={this.props.lien} target="_blank">
|
return <a rel="noopener noreferrer" href={this.props.lien} target="_blank">
|
||||||
<button className="button" aria-label="Bouton {this.props.aria-label}">
|
<button className="button" aria-label="Bouton {this.props.aria-label}">
|
||||||
<span class="icon">
|
<span class="icon">
|
||||||
<i className={"ion-" + this.props.icon}></i>
|
<ion-icon name={this.props.icon}></ion-icon>
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</a>;
|
</a>;
|
||||||
|
@ -17,7 +17,7 @@ export default class ContactButton extends Component {
|
|||||||
<a target="_blank" rel="noreferrer noopener" href={data.url} class="hide button is-large is-fullw-mobile"
|
<a target="_blank" rel="noreferrer noopener" href={data.url} class="hide button is-large is-fullw-mobile"
|
||||||
title={`Go to ${data.title}`}>
|
title={`Go to ${data.title}`}>
|
||||||
<span class="icon">
|
<span class="icon">
|
||||||
<i className={"ion-" + data.icon}></i>
|
<ion-icon name={data.icon}></ion-icon>
|
||||||
</span>
|
</span>
|
||||||
<span>{data.title}</span>
|
<span>{data.title}</span>
|
||||||
</a>
|
</a>
|
||||||
|
@ -45,9 +45,9 @@ class MainCard extends Component {
|
|||||||
</p>
|
</p>
|
||||||
<p class="control">
|
<p class="control">
|
||||||
<ButtonIcon
|
<ButtonIcon
|
||||||
icon="logo-twitter"
|
icon="logo-mastodon"
|
||||||
aria-label="Twitter"
|
aria-label="Mastodon"
|
||||||
lien="https://www.twitter.com/adamas_fr" />
|
lien="https://imaginair.es/@adamas" />
|
||||||
</p>
|
</p>
|
||||||
</p>
|
</p>
|
||||||
<p id="boutonCV" class="field">
|
<p id="boutonCV" class="field">
|
||||||
@ -55,7 +55,7 @@ class MainCard extends Component {
|
|||||||
href="https://files.adm.ink/anthony-dumas-cv.pdf" >
|
href="https://files.adm.ink/anthony-dumas-cv.pdf" >
|
||||||
<button class="button is-fullwidth" aria-label="Bouton Curriculum Vitæ">
|
<button class="button is-fullwidth" aria-label="Bouton Curriculum Vitæ">
|
||||||
<span class="icon">
|
<span class="icon">
|
||||||
<i className={"ion-md-document"}></i>
|
<ion-icon name="document-attach-outline"></ion-icon>
|
||||||
</span>
|
</span>
|
||||||
<span><FormattedMessage id="curriculumVitaeLink" /></span>
|
<span><FormattedMessage id="curriculumVitaeLink" /></span>
|
||||||
</button>
|
</button>
|
||||||
|
11
src/css/ionicons.min.css
vendored
11
src/css/ionicons.min.css
vendored
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 305 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -75,7 +75,7 @@
|
|||||||
{
|
{
|
||||||
"title": "Email",
|
"title": "Email",
|
||||||
"url": "mailto:anthony@dumas.cc",
|
"url": "mailto:anthony@dumas.cc",
|
||||||
"icon": "md-mail-unread",
|
"icon": "mail-outline",
|
||||||
"aria-label": "Email"
|
"aria-label": "Email"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -85,16 +85,16 @@
|
|||||||
"aria-label": "LinkedIn"
|
"aria-label": "LinkedIn"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "Discord",
|
"title": "Telegram",
|
||||||
"url": "https://discord.com/users/66154147279273984",
|
"url": "https://t.me/adamas_FR",
|
||||||
"icon": "md-call",
|
"icon": "call-outline",
|
||||||
"aria-label": "Discord"
|
"aria-label": "Telegram"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "Twitter",
|
"title": "Mastodon",
|
||||||
"url": "https://twitter.com/adamas_fr",
|
"url": "https://imaginair.es/@adamas",
|
||||||
"icon": "logo-twitter",
|
"icon": "logo-mastodon",
|
||||||
"aria-label": "Twitter"
|
"aria-label": "Mastodon"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -90,7 +90,7 @@
|
|||||||
{
|
{
|
||||||
"title": "Courriel",
|
"title": "Courriel",
|
||||||
"url": "mailto:anthony@dumas.cc",
|
"url": "mailto:anthony@dumas.cc",
|
||||||
"icon": "md-mail-unread",
|
"icon": "mail-outline",
|
||||||
"aria-label": "Email"
|
"aria-label": "Email"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -100,16 +100,16 @@
|
|||||||
"aria-label": "LinkedIn"
|
"aria-label": "LinkedIn"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "Discord",
|
"title": "Telegram",
|
||||||
"url": "https://discord.com/users/66154147279273984",
|
"url": "https://t.me/adamas_FR",
|
||||||
"icon": "md-call",
|
"icon": "call-outline",
|
||||||
"aria-label": "Discord"
|
"aria-label": "Telegram"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title": "Twitter",
|
"title": "Mastodon",
|
||||||
"url": "https://twitter.com/adamas_fr",
|
"url": "https://imaginair.es/@adamas",
|
||||||
"icon": "logo-twitter",
|
"icon": "logo-mastodon",
|
||||||
"aria-label": "Twitter"
|
"aria-label": "Mastodon"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user