silly-stuff/odin-templating/README.md

1.5 KiB

HTML Templates in Odin

	page := html()
	{head()
		{title("HTML Title")}
	}
	{body()
		{div()
			class("container")
			{div()
				class("article")
				{h1("Hello, world!")}
				{h6("Goodbye, world!")}
				{
					{div()
						attr("aria-data", "idk!")
						text("Yo, what's up!")
					}
					{div()
						{a("don't be eeeviiiilll", "http://google.com")}
						{a("This link has a class called 'button'")
							class("button")}
					}
				}
			}

			{img("background.png", "green texture")
				class("img")
			}
			{div()
				id("lol")
				class("hello")
			}
			{text("Random text")}
			{text("")}
		}
	}
<html>
        <head>
                
        </head>
        
                

Hello, world!

Goodbye, world!
Yo, what's up!
don't be eeeviiiilll This link has a class called 'button'
green texture
Random text
</html>