2018-04-03 22:40:37 +00:00
---
2018-04-11 14:29:33 +00:00
permalink: "about.html"
2018-04-03 23:16:45 +00:00
title: "About"
layout: page
2018-04-07 09:22:57 +00:00
show: true
2018-04-03 22:40:37 +00:00
---
There is a significant amount of subtle, yet precisely calibrated, styling to ensure that your content is emphasized while still looking aesthetically pleasing.
All links are easy to
[locate and discern ]({{ site.baseurl | uri_escape }} ),
yet don't detract from the
[harmony of a paragraph ]({{ site.baseurl | uri_escape }} ).
The _ same _ goes for italics and __bold __ elements.
2018-04-11 14:29:33 +00:00
Even the the strikeout works if
<del>for some reason you need to update your post</del>.
For consistency's sake,
<ins>The same goes for insertions</ins>,
of course.
2018-04-03 22:40:37 +00:00
### Code, with syntax highlighting
Here's an example of some ruby code with line anchors.
2018-04-11 14:29:33 +00:00
``` ruby
# The most awesome of classes
class Awesome < ActiveRecord :: Base
include EvenMoreAwesome
2018-04-03 22:40:37 +00:00
2018-04-11 14:29:33 +00:00
validates_presence_of :something
validates :email , email_format : true
2018-04-03 22:40:37 +00:00
2018-04-11 14:29:33 +00:00
def initialize ( email , name = nil )
self . email = email
self . name = name
self . favorite_number = 12
puts 'created awesomeness'
end
2018-04-03 22:40:37 +00:00
2018-04-11 14:29:33 +00:00
def email_format
email =~ / \ S+@ \ S+ \ . \ S+ /
2018-04-03 22:40:37 +00:00
end
2018-04-11 14:29:33 +00:00
end
```
2018-04-03 22:40:37 +00:00
Here's some CSS:
2018-04-11 14:29:33 +00:00
``` css
. foobar {
/* Named colors rule */
color : tomato ;
}
```
2018-04-03 22:40:37 +00:00
Here's some JavaScript:
2018-04-11 14:29:33 +00:00
``` js
var isPresent = require ( 'is-present' )
2018-04-03 22:40:37 +00:00
2018-04-11 14:29:33 +00:00
module . exports = function doStuff ( things ) {
if ( isPresent ( things ) ) {
doOtherStuff ( things )
2018-04-03 22:40:37 +00:00
}
2018-04-11 14:29:33 +00:00
}
```
2018-04-03 22:40:37 +00:00
Here's some HTML:
2018-04-11 14:29:33 +00:00
``` html
< div class = "m0 p0 bg-blue white" >
< h3 class = "h1" > Hello, world!< / h3 >
< / div >
```
2018-04-03 22:40:37 +00:00
# Headings!
They're responsive, and well-proportioned (in `padding` , `line-height` , `margin` , and `font-size` ).
2018-04-11 14:29:33 +00:00
They also heavily rely on the awesome utility,
[BASSCSS ](http://www.basscss.com/ ).
2018-04-03 22:40:37 +00:00
2018-04-11 14:29:33 +00:00
#### They draw the perfect amount of attention
2018-04-03 22:40:37 +00:00
This allows your content to have the proper informational and contextual hierarchy.
Yay.
### There are lists, too
* Apples
* Oranges
* Potatoes
* Milk
1. Mow the lawn
2. Feed the dog
3. Dance
### Images look great, too

### There are also pretty colors
Also the result of
[BASSCSS ](http://www.basscss.com/ ),
you can
<span class="bg-dark-gray white">highlight</span>
certain components of a
<span class="red">post</span>
<span class="mid-gray">with</span>
<span class="green">CSS</span>
<span class="orange">classes</span>.
I don't recommend using blue, though. It looks like a
<span class="blue">link</span>.
### Footnotes!
Markdown footnotes are supported, and they look great!
Simply put e.g. `[^1]` where you want the footnote to appear,[^1] and then add the reference at the end of your markdown.
### Stylish blockquotes included
You can use the markdown quote syntax, `>` for simple quotes.
> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Suspendisse quis porta mauris.
However, you need to inject html if you'd like a citation footer.
I will be working on a way to hopefully sidestep this inconvenience.
<blockquote>
<p>Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.</p>
<footer><cite title="Antoine de Saint-Exupéry">Antoine de Saint-Exupéry</cite></footer>
</blockquote>
### There's more being added all the time
Checkout the
2018-04-11 14:29:33 +00:00
[Github repository ](https://github.com/valentineus/valentineus.github.io )
2018-04-03 22:40:37 +00:00
to request, or add, features.
Happy writing.
---
[^1]: Important information that may distract from the main text can go in footnotes.