{% extends 'base.htm' %} {% macro render_article_link(desc, date) %}
  • {{ 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 soon!). There's also a way to request incident data directly the 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.

    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 %}
    {% endblock %}