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
<!DOCTYPE html> | |
<head> | |
<title>Gastra Super Menu</title> | |
<style> | |
p { | |
font-family: "Lucinda Grande", "Lucinda Sans Unicode", Helvetica, Arial, Verdana, sans-serif; | |
} | |
.veg:before { | |
content: url(img/veggie.png) " "; /*whitespace added to distance icon from text*/ | |
} |
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
#calculateTotal{ | |
border: 1px solid #809956; | |
color: #fff; | |
background: #809956; | |
padding: 10px 20px; | |
border-radius: 3px; | |
} |
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
<button id="calculateTotal">How Much?</button> |
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
<!DOCTYPE html> | |
<head> | |
<title>Gastra Super Menu</title> | |
<style> | |
p { | |
font-family: "Lucinda Grande", "Lucinda Sans Unicode", Helvetica, Arial, Verdana, sans-serif; | |
} | |
.veg:before { | |
content: url(img/veggie.png) " "; /*whitespace added to distance icon from text*/ | |
} |
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
.veg:before { | |
content: url(img/veggie.png) " "; /*whitespace added to distance icon from text*/ | |
} |
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
<body> | |
<p class="veg">Rocket Drizzle Salad</p> <!--added veg classes--> | |
<p class="veg">All about the Beets</p> | |
<p class="veg">Great bowl of Broccoli</p> | |
<p class="veg main" Lentil Masala with Spinach</p><!--added veg and main classes--> | |
<p class="meat main">Peri Peri double Chicken</p> <!--added main and meat classes--> | |
</body> |
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
<body> | |
<p>Rocket Drizzle salad</p> | |
<p>All about the Beets</p> | |
<p>Great bowl of Broccoli</p> | |
<p>Red Lentil Masala with Spinach</p> | |
<p>Peri Peri double Chicken</p> | |
</body> |
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
<body> | |
<h1>My Great Page</h1> | |
<img src="img/jazzCats.jpg" /> | |
</body> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Page Title Here</title> | |
</head> | |
<body> | |
<h1>My Great Page</h1> | |
<p>A witty paragraph.</p> | |
</body> | |
</html> |
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
# Based on the book 'Lightweight Django' | |
# by Mark Lavin & Julia Elman | |
# See the following Repo for this example broken into multiple files. | |
# https://github.com/richardadalton/djangolight | |
import sys | |
from django.core.management import execute_from_command_line | |
from django.conf import settings | |
from django.conf.urls import url |
NewerOlder