diff options
-rwxr-xr-x | public/css/style.css | 21 | ||||
-rw-r--r-- | views/publicEventList.handlebars | 18 |
2 files changed, 35 insertions, 4 deletions
diff --git a/public/css/style.css b/public/css/style.css index 70c6657..0e4f17f 100755 --- a/public/css/style.css +++ b/public/css/style.css @@ -830,4 +830,23 @@ article.static-page header { width: 250px; max-width: 60%; margin: 3em; -3 +} + +.wrapper { + overflow: auto; + white-space: nowrap; +} + +.picture { + vertical-align: top; + display: inline-block; + max-width: 300px; + position: relative; +} + +.about { + text-align: center; + max-width: 40ch; + text-align: center; + margin: auto; +} diff --git a/views/publicEventList.handlebars b/views/publicEventList.handlebars index 70376b7..c9a51b7 100644 --- a/views/publicEventList.handlebars +++ b/views/publicEventList.handlebars @@ -23,9 +23,21 @@ {{> eventList upcomingEvents }} </div> -<div class="card mt-4 mb-4" id="pastEvents"> - <h5 class="card-header">{{t "views.publiceventlist.pastevents" }}</h5> - {{> eventList pastEvents }} +<hr> +<div class="about"> + <p> + Bring your own book, read for one hour, and then chat + for one hour about books, literature, and arts. + </p> + <p> + No registration: just show up with a good book!<br>For park events, you can bring a blanket as well. + </p> +</div> +<div class="wrapper"> + <img class="picture" src="/pictures/jefferson.jpg"> + <img class="picture" src="/pictures/mccarren.jpg"> + <img class="picture" src="/pictures/bookclub.jpg"> + <img class="picture" src="/pictures/marthas.jpg"> </div> </main> |