Advertisement
Guest User

Untitled

a guest
Jun 10th, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.49 KB | None | 0 0
  1. @(loginUrl: String, serverLogin: Option[String])
  2.  
  3. @main("INE5636 - Previsao do tempo") {
  4.  
  5.         <h1>INE5646 - Previsao do Tempo</h1>
  6.           <p>Fonte dos dados metereologicos: <a href="http://openweathermap.org" target="_blank">Open Weather Map</a></p>
  7.                
  8.                 <a href="@loginUrl">Login</a>
  9.                 </p>
  10.    
  11.     @{
  12.         serverLogin match {
  13.             case None => ""
  14.             case Some(url) =>
  15.                 <a href="@url">Acesso Servidor</a>
  16.         }
  17.     }
  18.    
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement