From 2feff82cf98724bb1f8249d681f116459241c929 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Sat, 5 Mar 2016 19:50:08 -0500 Subject: add htmlpageview and views/page.cr --- src/guff.cr | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/guff.cr') diff --git a/src/guff.cr b/src/guff.cr index 174ec67..b2794b6 100644 --- a/src/guff.cr +++ b/src/guff.cr @@ -13,10 +13,13 @@ module Guff def call(context : HTTP::Server::Context) if md = RE.match(context.request.path || "") - context.response.puts "SlugHandler: path = %s, md = %s" % [ + title = "SlugHandler: path = %s, md = %s" % [ context.request.path, md.to_s ] + + context.response.content_type = "text/html; charset=utf-8" + context.response.puts HTMLPageView.new(title, "asdf") else call_next(context) end -- cgit v1.2.3