2021-07-02 12:51:36 -04:00
|
|
|
// Import SCSS
|
|
|
|
import '../css/app.scss'
|
|
|
|
|
2021-07-04 09:26:44 -04:00
|
|
|
// Import icons for sprite-loader
|
|
|
|
// navbar brand icon
|
|
|
|
import "../../node_modules/@mdi/svg/svg/desktop-classic.svg"; // brand
|
|
|
|
// other:
|
|
|
|
import "../../node_modules/@mdi/svg/svg/home.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/information.svg";
|
2021-07-04 18:16:33 -04:00
|
|
|
import "../../node_modules/@mdi/svg/svg/account.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/briefcase-account.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/zip-disk.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/typewriter.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/calendar-clock.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/tag-multiple.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/rss.svg";
|
2021-07-10 19:30:03 -04:00
|
|
|
import "../../node_modules/@mdi/svg/svg/account-hard-hat.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/open-in-new.svg";
|
2021-07-10 17:13:24 -04:00
|
|
|
import "../../node_modules/@mdi/svg/svg/magnify.svg";
|
2021-07-04 18:16:33 -04:00
|
|
|
// social
|
|
|
|
import "../../node_modules/@mdi/svg/svg/linkedin.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/github.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/key-variant.svg";
|
2021-07-06 14:57:45 -04:00
|
|
|
import "../raw/gitea.svg";
|
2021-07-04 18:16:33 -04:00
|
|
|
import "../../node_modules/@mdi/svg/svg/goodreads.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/twitter.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/facebook.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/instagram.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/steam.svg";
|
|
|
|
import "../../node_modules/@mdi/svg/svg/discord.svg";
|
2021-07-04 09:26:44 -04:00
|
|
|
|
2021-07-02 12:51:36 -04:00
|
|
|
// Import Bootstrap JS
|
|
|
|
import 'bootstrap/js/dist/collapse';
|
|
|
|
import 'bootstrap/js/dist/alert';
|
|
|
|
import 'bootstrap/js/dist/button';
|
|
|
|
import 'bootstrap/js/dist/dropdown';
|
2019-05-23 12:30:31 -04:00
|
|
|
|
2021-07-04 18:16:33 -04:00
|
|
|
// import navbar burger code
|
|
|
|
import "./_hamburger-helper";
|
2021-07-10 10:24:05 -04:00
|
|
|
|
|
|
|
// import highlight.js for handling inline code
|
|
|
|
import hljs from '../../node_modules/highlight.js/lib/core';
|
|
|
|
import markdown from '../../node_modules/highlight.js/lib/languages/markdown';
|
|
|
|
hljs.registerLanguage('markdown', markdown);
|
|
|
|
import javascript from '../../node_modules/highlight.js/lib/languages/javascript';
|
|
|
|
hljs.registerLanguage('javascript', javascript);
|
|
|
|
import powershell from '../../node_modules/highlight.js/lib/languages/powershell';
|
|
|
|
hljs.registerLanguage('powershell', powershell);
|
|
|
|
import bash from '../../node_modules/highlight.js/lib/languages/bash';
|
|
|
|
hljs.registerLanguage('bash', bash);
|
|
|
|
import shell from '../../node_modules/highlight.js/lib/languages/shell';
|
|
|
|
hljs.registerLanguage('shell', shell);
|
|
|
|
import csharp from '../../node_modules/highlight.js/lib/languages/csharp';
|
|
|
|
hljs.registerLanguage('csharp', csharp);
|
|
|
|
import python from '../../node_modules/highlight.js/lib/languages/python';
|
|
|
|
hljs.registerLanguage('python', python);
|
|
|
|
import php from '../../node_modules/highlight.js/lib/languages/php';
|
|
|
|
hljs.registerLanguage('php', php);
|
|
|
|
import elixir from '../../node_modules/highlight.js/lib/languages/elixir';
|
|
|
|
hljs.registerLanguage('elixir', elixir);
|
|
|
|
|
|
|
|
// highlight any code blocks tagged with class 'to-highlight'
|
|
|
|
document.addEventListener('DOMContentLoaded', (event) => {
|
|
|
|
document.querySelectorAll('code.to-highlight').forEach((el) => {
|
|
|
|
hljs.highlightElement(el);
|
|
|
|
});
|
|
|
|
});
|