Skip to content

Commit

Permalink
fix missing vue pages
Browse files Browse the repository at this point in the history
  • Loading branch information
OmgImAlexis committed Mar 21, 2018
1 parent 1d62c90 commit 53b0360
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 0 deletions.
13 changes: 13 additions & 0 deletions themes-default/slim/views/IRC.mako
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
<%inherit file="/layouts/main.mako"/>
<%block name="scripts">
<script>
let app;
const startVue = () => {
app = new Vue({
el: '#vue-wrap',
data() {
return {};
}
});
};
</script>
</%block>
<%block name="content">
<%
from medusa import app
Expand Down
13 changes: 13 additions & 0 deletions themes-default/slim/views/markdown.mako
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
<%inherit file="/layouts/main.mako"/>
<%block name="scripts">
<script>
let app;
const startVue = () => {
app = new Vue({
el: '#vue-wrap',
data() {
return {};
}
});
};
</script>
</%block>
<%block name="content">
${data}
</%block>
13 changes: 13 additions & 0 deletions themes/dark/templates/IRC.mako
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
<%inherit file="/layouts/main.mako"/>
<%block name="scripts">
<script>
let app;
const startVue = () => {
app = new Vue({
el: '#vue-wrap',
data() {
return {};
}
});
};
</script>
</%block>
<%block name="content">
<%
from medusa import app
Expand Down
13 changes: 13 additions & 0 deletions themes/dark/templates/markdown.mako
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
<%inherit file="/layouts/main.mako"/>
<%block name="scripts">
<script>
let app;
const startVue = () => {
app = new Vue({
el: '#vue-wrap',
data() {
return {};
}
});
};
</script>
</%block>
<%block name="content">
${data}
</%block>
13 changes: 13 additions & 0 deletions themes/light/templates/IRC.mako
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
<%inherit file="/layouts/main.mako"/>
<%block name="scripts">
<script>
let app;
const startVue = () => {
app = new Vue({
el: '#vue-wrap',
data() {
return {};
}
});
};
</script>
</%block>
<%block name="content">
<%
from medusa import app
Expand Down
13 changes: 13 additions & 0 deletions themes/light/templates/markdown.mako
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
<%inherit file="/layouts/main.mako"/>
<%block name="scripts">
<script>
let app;
const startVue = () => {
app = new Vue({
el: '#vue-wrap',
data() {
return {};
}
});
};
</script>
</%block>
<%block name="content">
${data}
</%block>

0 comments on commit 53b0360

Please sign in to comment.