Skip to content

Latest commit

 

History

History
72 lines (57 loc) · 1.4 KB

README.md

File metadata and controls

72 lines (57 loc) · 1.4 KB

gis.utah.gov

Read about our new website.
Contribute content or typos.
License: MIT.

Local Development

  1. Check out this repository
  2. run docker-compose up
  3. browse to localhost:4000

Common Website Tips

_italics_
**bold**
_**bold italics**_

link to page

  • markdown
[link text]({{ "/path/to/item/" | prepend: site.baseurl }})
  • html
<a href="{{ "/path/to/item/" | prepend: site.baseurl }}">link text</a>

link to post:

  • markdown
[link text]({{site.baseurl}}{% post_url 2016-05-26-file-name-without-extension %})
  • html
<a href="{{site.baseurl}}{% post_url 2016-05-26-file-name-without-extension %}">link text</a>

external link

  • markdown
[link text](http://external.website.location)

images

  • markdown
![alt text]({{ "/path/to/item/" | prepend: site.baseurl }})
  • html
<img src="{{ "/path/to/image.jpg" alt="hover text" | prepend: site.baseurl }}"/>

link alt text

[link text]({{ "/path/to/item/" | prepend: site.baseurl }} "popup text")

css in markdown

![alt text]({{ "/path/to/item/" | prepend: site.baseurl }})
{: .css-class-name}