From 6c4a69c8fc0635140ed2cf589cb87397cd9e8e87 Mon Sep 17 00:00:00 2001 From: Kyle K Date: Mon, 27 Mar 2017 03:14:49 -0500 Subject: use templating to render HTML page on /app --- myapp/templates/index.html | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 myapp/templates/index.html (limited to 'myapp/templates') diff --git a/myapp/templates/index.html b/myapp/templates/index.html new file mode 100644 index 0000000..1a1f618 --- /dev/null +++ b/myapp/templates/index.html @@ -0,0 +1,37 @@ + + + + + Craigslist Scraper + + + +

Craigslist Scrapper

+get list of current WRX STi parts for sale in Chicago area +
+    url: {{ baseurl }}
+    query: {{ keyword }}
+
+    author: fatalhalt
+    https://github.com/fatalhalt/CLscrap
+
+
+
+{% for i in data %} +
+ {{ i.title }} + {{ i.date }} + {{ i.price }} + {{ i.hood }} + img +
+{% endfor %} +
+ + \ No newline at end of file -- cgit v1.2.3