-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.html
23 lines (22 loc) · 3.09 KB
/
app.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html {{ HTML_ATTRS }}>
<head>
{{ HEAD }}
<style>
#svg-defs {
width: 0;
height: 0;
overflow: hidden;
position: absolute;
}
</style>
</head>
<body {{ BODY_ATTRS }}>
<!-- svg-sprite -->
<div id='svg-defs'>
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 19 39" id="icon-arrow-next" xmlns="http://www.w3.org/2000/svg"><path d="M2 2l15 17.5L2 37" stroke-width="3" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol viewBox="0 0 19 39" id="icon-arrow-prev" xmlns="http://www.w3.org/2000/svg"><path d="M17 37L2 19.5 17 2" stroke-width="3" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round"/></symbol><symbol viewBox="0 0 612.006 612.006" id="icon-filter" xmlns="http://www.w3.org/2000/svg"><path d="M292.911 318.872H14.833C6.639 318.872 0 312.232 0 304.04c0-8.194 6.639-14.833 14.833-14.833h278.078c8.194 0 14.833 6.639 14.833 14.833 0 8.192-6.639 14.832-14.833 14.832zM597.167 318.872H449.638c-8.193 0-14.833-6.64-14.833-14.833 0-8.194 6.64-14.833 14.833-14.833h147.529c8.193 0 14.833 6.639 14.833 14.833 0 8.193-6.64 14.833-14.833 14.833zM214.545 506.712H14.833C6.639 506.712 0 500.072 0 491.88c0-8.193 6.639-14.834 14.833-14.834h199.712c8.194 0 14.833 6.641 14.833 14.834 0 8.192-6.639 14.832-14.833 14.832zM597.167 506.712H371.266c-8.193 0-14.833-6.64-14.833-14.833 0-8.192 6.64-14.833 14.833-14.833h225.901c8.193 0 14.833 6.641 14.833 14.833 0 8.193-6.64 14.833-14.833 14.833zM129.368 134.96H14.833C6.639 134.96 0 128.32 0 120.127s6.639-14.833 14.833-14.833h114.535c8.193 0 14.833 6.639 14.833 14.833s-6.639 14.833-14.833 14.833zM597.167 134.96H286.1c-8.194 0-14.833-6.639-14.833-14.833s6.639-14.833 14.833-14.833h311.073c8.193 0 14.833 6.639 14.833 14.833-.006 8.193-6.646 14.833-14.839 14.833z"/><path d="M175.635 181.215c-33.695 0-61.101-27.406-61.101-61.1 0-33.683 27.406-61.089 61.101-61.089 33.683 0 61.088 27.406 61.088 61.089-.005 33.695-27.411 61.1-61.088 61.1zm0-92.522c-17.331 0-31.434 14.097-31.434 31.422 0 17.331 14.103 31.434 31.434 31.434 17.325 0 31.422-14.104 31.422-31.434-.005-17.324-14.103-31.422-31.422-31.422zM257.709 552.979c-33.695 0-61.1-27.406-61.1-61.102 0-33.688 27.405-61.095 61.1-61.095 33.689 0 61.094 27.406 61.094 61.095-.005 33.696-27.41 61.102-61.094 61.102zm0-92.529c-17.331 0-31.434 14.099-31.434 31.43 0 17.33 14.103 31.435 31.434 31.435s31.428-14.104 31.428-31.435-14.102-31.43-31.428-31.43zM339.173 365.121c-33.689 0-61.095-27.404-61.095-61.094 0-33.683 27.406-61.089 61.095-61.089 33.688 0 61.094 27.406 61.094 61.089 0 33.689-27.406 61.094-61.094 61.094zm0-92.516c-17.331 0-31.429 14.097-31.429 31.422 0 17.331 14.098 31.428 31.429 31.428s31.428-14.097 31.428-31.428c0-17.325-14.097-31.422-31.428-31.422z"/></symbol></svg>
</div>
<!-- endsvg-sprite -->
{{ APP }}
</body>
</html>