Skip to content
Snippets Groups Projects
Verified Commit 40f5dd2f authored by Damien's avatar Damien
Browse files

FEAT #11233 TIME 0:45 Url dynamic

parent 46e67782
No related branches found
No related tags found
No related merge requests found
<!doctype html> <!doctype html>
<html lang="fr"> <html lang="fr">
<head> <head>
<base href="/" id="baseHref"> <base id="baseHref">
<script type="text/javascript"> <script type="text/javascript">
document.getElementById('baseHref').href = '/' + window.location.pathname.split('/')[1] + '/dist/'; let splitedUrl = window.location.pathname.split('/')[1];
if (typeof splitedUrl === 'undefined' || splitedUrl === '') {
document.getElementById('baseHref').href = '/dist/';
} else {
document.getElementById('baseHref').href = '/' + window.location.pathname.split('/')[1] + '/dist/';
}
</script> </script>
<meta charset="utf-8"> <meta charset="utf-8">
<title>Maarch Parapheur</title> <title>Maarch Parapheur</title>
......
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