Created
November 30, 2016 16:13
-
-
Save Riari/cd563bf0212a782d4ab525d25ad8e1ba to your computer and use it in GitHub Desktop.
Please don't take this even slightly seriously.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
#db-name { | |
type: mysql; | |
hostname: localhost; | |
user: dylan; | |
password: boob; | |
port: 3306; | |
} | |
.spoon-name { | |
source: #db-name; | |
table: spoons; | |
column: name; | |
content: column; | |
select-column: id; | |
select-value: 1; | |
} | |
.spoon-length { | |
source: #db-name; | |
table: spoons; | |
column: length; | |
content: column; | |
select-column: id; | |
select-value: 1; | |
} | |
</style> | |
<div id="db-name"> | |
<div class="spoon-name"></div> | |
<div class="spoon-length"></div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment