{% extends 'base.htm' %} {% macro render_article_link(desc, date) %}
{{ desc.domain }}
{{ desc.title }}
{% endmacro %} {% block content %}
It has been
{{ sb.num_days }}
days

Why?

If you're unfamiliar with Boston, there's a road along the Charles river known for having several low bridges going over it. People seem to have a lot of problems with it when driving tall trucks, especially movers driving U-Hauls.

I made this website because I thought it was funny. It works by searching for news articles with certain keywords on Google on each day. This only works well if the incidents are reported on on news sites/etc, but there are false-positives (which you can report!). There's also a way to request incident data directly from MassDOT, but that's a lot more work to pull data from and I'm not sure how quickly it's updated so I'll leave that to someone more dedicated to work on. A common type of false positive that shows up with this is when a news site publishes an article about Storrow in general rather than a specific event, so feel free to report those if you want.

Articles

{% for n in notices %}
{{ n.text }}
{% endfor %}
{% for d in sb.days %}

{{ d.date }}

{% for l in d.links %} {{ render_article_link(l, d.date) }} {% endfor %}
{% if d.maybe_links|length > 0 %}
and {{ d.maybe_links|length }} weak match(es)
{% for l in d.maybe_links %} {{ render_article_link(l, d.date) }} {% endfor %}
{% endif %}
{% endfor %}

Submit

Found an article that my shitty code missed? Submit it here and it'll verify and list it!
{% endblock %}