Skip to content

Instantly share code, notes, and snippets.

@gre
Forked from zxamplez/CODE
Last active December 19, 2015 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gre/5943039 to your computer and use it in GitHub Desktop.
Save gre/5943039 to your computer and use it in GitHub Desktop.
#test gist multi-files

Play By Example

A collection of Play Framework code snippets used by PlayByExample (snippets aggregator) - inspired by 140byt.es

How to use

  1. Fork this gist to create a new snippet.
  2. Modify your gist according to Rules.
  3. Save it and go to Play By Example.

Rules

  1. You MUST put a gist description which summary your snippet.
  2. The code snippet should takes a few lines of code. Try to split up your code in multiple gists if it takes more.
  3. The source code must be put in a file with the proper filetype (e.g. code.scala). If you want to explain more deeper and provide examples, please use a Markdown file (e.g. index.md).
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2013 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
.home {
.main {
> .col {
padding: 0px 30px;
}
h3 {
font-style: italic;
color: #454545;
text-align: center;
}
p {
text-align: justify;
}
}
}
.tags {
margin: 15px 0px;
.tag {
text-align: center;
a {
font-size: 18px;
padding: 10px;
&:hover {
color: @green-play;
text-decoration: none;
}
}
}
}
@()
<!DOCTYPE html>
<html>
<head>
<title>@Messages("application.name")</title>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment