Traceback (most recent call last):
  File "/var/www/pottery/wsgi/lib/charlotte.py", line 209, in run
    output = page.render()
  File "/var/www/pottery/wsgi/bin/pottery", line 65, in render
    return self.page(str(self.template(content,argpath)))
  File "/var/www/pottery/wsgi/lib/compose.py", line 130, in __str__
    raise e
ImgurClientRateLimitError: Rate-limit exceeded!

def composition(self):
  global __s
  __s += '<p>\n  This page is a diary of albums of some of my firings.  Sometimes\n  there will be pots, sometimes images loading or unloading or\n  comparisons of both.  At some point I would like to make time lapse\n  videos, so maybe there will be one of those.\n </p>\n    \n\n<div style="width:25%; float: left;">\n  '
  for (id,title,description,images) in self.page.firings():

    self.add('<p><a href="/pottery/firings/%s">%s</a><p/>' % (id,title))
  __s += '\n</div>\n\n<div style="width:75%; float: right;">\n  '
  if len(self.argpath):

    album = self.page.imgur.get_album(self.argpath)

    self.add('<blockquote class="imgur-embed-pub" lang="en" data-id="a/%s"><a href="//imgur.com/%s">%s</a></blockquote><script async src="//s.imgur.com/min/embed.js" charset="utf-8"></script>' % (self.argpath,self.argpath,album.description))

  
  __s += '\n</div>\n'
  return __s

__result = composition(__composer)