Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^2: Survey of Surveys on HTML Templating systems

by metaperl (Curate)
on Feb 23, 2005 at 22:02 UTC ( [id://433872]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    Welcome back <b tal:content="user/name">Sample Username</b>,
    you last logged in <i tal:content="user/last_login">Sat 23rd Aug</i>
    
  2. or download this
        Welcome back Sample Username, you last logged in Sat 23rd Aug
    
  3. or download this
    $h = {
      user => {
    ...
        last_login => "Feb 22nd"
      }
    }
    
  4. or download this
        Welcome back Fergal Daly, you last logged in Feb 22nd
    
  5. or download this
    require html::welcome_form;
    
    ...
    my $last_login = $tree->look_down('tal:content' => 'user/last_login);
    $last_login->replace_content($hash->{user}{last_login});
    
  6. or download this
    for my $content (qw(name last_login)) {
    
    ...
    
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://433872]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-03-28 22:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found