Skip to content

Commit

Permalink
fix paths in index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
rbrtrbrt committed Dec 11, 2019
1 parent a821bef commit 095c8cd
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
<head>
<meta charset='utf-8'>
<title>Page Title</title>
<link rel="stylesheet" href="../fonts/ZillaSlab/ZillaSlab.css"/>
<link rel="stylesheet" href="../fonts/SourceCodePro/SourceCodePro.css"/>
<link href="../libraries/prism.css" rel="stylesheet" />
<link rel="stylesheet" href="../css/main.css"/>
<link rel="stylesheet" href="./fonts/ZillaSlab/ZillaSlab.css"/>
<link rel="stylesheet" href="./fonts/SourceCodePro/SourceCodePro.css"/>
<link rel="stylesheet" href="./css/main.css"/>
<style type="text/css">
#agenda-pointer {
font-family: 'Avenir Next';
Expand All @@ -28,10 +27,9 @@

</main>
<aside id="sidebar"></aside>
<script src="../libraries/prism.js"></script>
<script language="javascript">
async function loadAgenda() {
const response = await fetch('../agenda.html')
const response = await fetch('./agenda.html')
const content = await response.text()
const agendaElement = document.createElement( 'div')
agendaElement.className = 'agenda';
Expand Down

0 comments on commit 095c8cd

Please sign in to comment.