Skip to content

Instantly share code, notes, and snippets.

View awestbro's full-sized avatar

Aaron Westbrook awestbro

View GitHub Profile
defmodule Myproject.LayoutView do
use Myproject.Web, :view
defp render_flash(type, message) do
~E"""
<div class="alert alert-<%= type %>" role="alert">
<%= message %>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
@awestbro
awestbro / index.html
Created April 19, 2020 14:54
Highlighting margin, border, and padding with Javascript
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Highlighting elements example</title>
</head>
<body>