Skip to content

Instantly share code, notes, and snippets.

@ebinion
ebinion / Mail To.html
Last active October 11, 2015 21:27
Mailto with starter text
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Testing Shit</title>
<link rel="stylesheet" href="style.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
</head>
<body>
<h1>Yeah, Let's get this party started.</h1>
@ebinion
ebinion / gist:2569695
Created May 1, 2012 17:09
New form style Rails
<h1 id="edit_the_">Edit the <%= @line.name %></h1>
<%= form_for @line do |form| %>
<%= form.label :name, "Name of this train" %>
<%= form.text_field :name %>
<%= form.label :frequency, "Frequency of this train line" %>
<%= form.text_field :frequency %>
<% end %>