All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hyperscala.examples.basic.StaticHTMLExample.scala Maven / Gradle / Ivy

The newest version!
package org.hyperscala.examples.basic

import org.hyperscala.examples.Example
import org.hyperscala.html._
import org.hyperscala.web.Webpage
import org.powerscala.IO

/**
 * @author Matt Hicks 
 */
class StaticHTMLExample extends Webpage with Example {
  body.contents += new tag.Div {
    contents += "Static content below:"
    contents += new StaticHTML(IO.copy(getClass.getClassLoader.getResource("static.html")))
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy