From 2be1b10fa34907f73368f08408cf1e25a1395ddf Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sat, 31 Jan 2015 20:45:35 -0800 Subject: [PATCH] fix naming conflict --- views/contact.moon | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/contact.moon b/views/contact.moon index 89ed0f0..43fbce9 100644 --- a/views/contact.moon +++ b/views/contact.moon @@ -2,9 +2,9 @@ import Widget from require "lapis.html" class Index extends Widget content: => - link = (img, url, name) -> + link = (imgl, url, name) -> div class: "col-md-4", -> - img src: "/static/img/contact/" .. img, height: 250, width: 250 + img src: "/static/img/contact/" .. imgl, height: 250, width: 250 a class: "lead", href: url, name style [[ img { padding-top: 25px; padding-right: 25px; padding-bottom: 25px; padding-left: 25px; } ]]