move tests to plugin folder
This commit is contained in:
1
assets/test_data/static/css/style.min.css
vendored
Normal file
1
assets/test_data/static/css/style.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
body{font:14px/1.5 "Droid Sans",sans-serif;background-color:#e4e4e4;color:#242424}a{color:red}a:hover{color:orange}
|
||||
19
assets/test_data/static/css/style.scss
Normal file
19
assets/test_data/static/css/style.scss
Normal file
@@ -0,0 +1,19 @@
|
||||
/* -*- scss-compile-at-save: nil -*- */
|
||||
|
||||
$baseFontFamily : "Droid Sans", sans-serif;
|
||||
$textColor : #242424;
|
||||
$bodyBackground : #e4e4e4;
|
||||
|
||||
body {
|
||||
font: 14px/1.5 $baseFontFamily;
|
||||
background-color: $bodyBackground;
|
||||
color: $textColor;
|
||||
}
|
||||
|
||||
a {
|
||||
color: red;
|
||||
|
||||
&:hover {
|
||||
color: orange;
|
||||
}
|
||||
}
|
||||
7
assets/test_data/templates/base.html
Normal file
7
assets/test_data/templates/base.html
Normal file
@@ -0,0 +1,7 @@
|
||||
{% extends "!simple/base.html" %}
|
||||
|
||||
{% block head %}
|
||||
{% assets filters="scss,cssmin", output="gen/style.%(version)s.min.css", "css/style.scss" %}
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/{{ ASSET_URL }}">
|
||||
{% endassets %}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user