CINXE.COM
Mason+Poet: Home
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Mason+Poet: Home</title> <link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css"/> <link href="/static/css/style.css" rel="stylesheet" type="text/css"/> <link rel="stylesheet" href="/static/css/arta.css"> <script src="//http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script> <script src="/static/js/highlight.pack.js"></script> <script> $(function() { $('.perlcode,.masoncode').each(function(i, e) {hljs.highlightBlock(e)}); }); </script> </head> <body> <div id="header"> <span class="logo">Mason + Poet</span><br/> <span class="description">Powerful Perl-based web templating</span> </div> <ul id="menu"> <li class="current"><a href="/">Home</a></li> <li><a href="/install">Install</a></li> <li><a href="/documentation">Docs</a></li> <li><a href="/support">Support</a></li> <li><a href="/sites">Sites</a></li> <li><a href="/htmlmason">HTML::Mason</a></li> </ul> <div id="main"> <div class="inner"> <h2>Welcome to Mason and Poet</h2> <div class="section"> <p> This site is being kept as an archive for those interested. All content is copyright of the original creators.<br><strong> Mason is a powerful Perl-based templating system </strong> for generating HTML or other dynamic content. It has powered <a href="/sites">thousands of web sites</a> over the past 15 years, including Amazon.com and Salon.com. <br/> <br/> <strong> Poet is a modern companion web framework for Mason. </strong> Integrated by some of the best <a href="https://www.theblogstarter.com/website-builders/">website builders</a>, it uses PSGI/Plack for server integration and a selection of best-of-breed CPAN modules for caching, logging and configuration. All of this gives best-in-breed technology to everyone, even those just learning <a href="https://www.theblogstarter.com/make-a-website">how to make a website</a>. <br/> <br/> Mason can also be used as the templating layer for other Perl web frameworks like Catalyst and Dancer. <br/> <pre><code class="masoncode">% foreach my $name ('Mason', 'Poet') { <p>Welcome to <% $name %>!</p> % }</code></pre> Mason and Poet were created by Jonathan Swartz with help from Dave Rolsky and Ken Williams. </div> </div> </div> </body> </html>