some small changes

main
Steve Ayerhart 2022-02-22 16:47:31 -05:00
parent 1f0f758c4e
commit d3d1e9264a
No known key found for this signature in database
GPG Key ID: 5C815FDF3A00B8BA
6 changed files with 19 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/.sass-cache/
/ig_media.db
/public/style/*.css

View File

@ -22,4 +22,12 @@ get '/critters' do
erb :critters
end
get '/about' do
erb :about
end
get '/merch' do
erb :merch
end
require './models'

View File

@ -92,8 +92,15 @@ body {
}
footer {
padding: 36px 12px;
flex-shrink: 0;
display: flex;
padding: 12px 12px;
justify-content: center;
height: 30px;
.copyright {
color: $dundo-brown;
font-size: 11px;
font-family: sans-serif;
}
}
}

0
views/about.erb Normal file
View File

View File

@ -43,7 +43,7 @@
<div class="sitemap">
</div>
<div class="copyright">
<small>&copy; Copyright 2021, Dundo Farms</small>
<small>&copy; <%= DateTime.now.strftime('%Y') %> Dundo Farms</small>
</div>
</footer>
</body>

0
views/merch.erb Normal file
View File