Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add details about food and networking time #59

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion app/views/pages/now.html.slim
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
section
#next-meeting
h2 Next Meeting
p= formatted_date(@next_crb.time)
p
Food and networking: 5pm-6:30pm
Program: #{formatted_date(@next_crb.time)}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The #{} around this is causing a syntax error.

Expected attribute
  /app/app/views/pages/now.html.slim, Line 6, Column 17
    Program: #{formatted_date(@next_crb.time)}
               ^

You mentioned that you were not familiar with slim, but you should be able to validate your changes by following the steps in the https://github.com/columbusrb/columbusrb.com/blob/master/contributing.md for getting it running on your machine. If you have any trouble with that, please let me know and I'd be happy to help


- @next_crb.speakers.each do |s|
.speaker
Expand Down