some small changes
parent
1f0f758c4e
commit
d3d1e9264a
|
@ -1,2 +1,3 @@
|
|||
/.sass-cache/
|
||||
/ig_media.db
|
||||
/public/style/*.css
|
||||
|
|
|
@ -22,4 +22,12 @@ get '/critters' do
|
|||
erb :critters
|
||||
end
|
||||
|
||||
get '/about' do
|
||||
erb :about
|
||||
end
|
||||
|
||||
get '/merch' do
|
||||
erb :merch
|
||||
end
|
||||
|
||||
require './models'
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
<div class="sitemap">
|
||||
</div>
|
||||
<div class="copyright">
|
||||
<small>© Copyright 2021, Dundo Farms</small>
|
||||
<small>© <%= DateTime.now.strftime('%Y') %> Dundo Farms</small>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
|
|
Loading…
Reference in New Issue