http://qs321.pair.com?node_id=1193217


in reply to using a 'here' doc to build a web page

What framework are you using? Mojolicious::Lite has a nice templating system by default (see this tutorial), other templating systems are optional, and a logical path for growth.

Replies are listed 'Best First'.
Re^2: using a 'here' doc to build a web page
by Anonymous Monk on Jun 21, 2017 at 15:49 UTC
    not using a framework; hand-coding CSS and HTML. Mojolicious::Lite is something I will explore...thanks

      Are you using CGI? Even that will likely be better (safer) than something hand rolled. I'd suggest that you start off with Mojolicious::Lite, the documentation is great.

        I thought I would use CGI on the (yet-to-be-written) server program but not on the client end. The client displays a series of drop-down boxes to collect user info and I didn't think it worthwhile to go into CGI's ability to do this.