wrong link

master
chimchooree 9 months ago
parent 7bca2b850e
commit f5e8bc550a

@ -39,7 +39,7 @@
</a> </a>
<p>In the finished version, dogs rain down upon Elwell's animal shelter to direct his attention upward, where he will meet the source of the dogs. </p> <p>In the finished version, dogs rain down upon Elwell's animal shelter to direct his attention upward, where he will meet the source of the dogs. </p>
<a target="_blank" href="/static/img/ent/SmallThingThatMakesThings_rainingdogs.png"> <a target="_blank" href="/static/img/ent/SmallThingThatMakesThings_dialog.png">
<img src="/static/img/ent/SmallThingThatMakesThings_dialog.png" alt="(image: Dialog)" width="500" height="265.12"> <img src="/static/img/ent/SmallThingThatMakesThings_dialog.png" alt="(image: Dialog)" width="500" height="265.12">
</a> </a>
<p>Here's an example of some dialog between Elwell and his boss. For my first serious attempt at dialog, it came out smooth enough. </p> <p>Here's an example of some dialog between Elwell and his boss. For my first serious attempt at dialog, it came out smooth enough. </p>

@ -567,12 +567,12 @@ def entry(page_t):
loc = 'diary/entries/' loc = 'diary/entries/'
entry = prepare_diary_entry(page, loc) entry = prepare_diary_entry(page, loc)
# link preview
preview_t = prepare_article(entry[1], loc + page) preview_t = prepare_article(entry[1], loc + page)
preview = preview_t.replace('<p>','') preview = preview_t.replace('<p>','')
preview = preview.replace('</p>','') preview = preview.replace('</p>','')
preview = preview.replace('&lt;p&gt;','') preview = preview.replace('&lt;p&gt;','')
preview = preview[:246] + " ..." preview = preview[:246] + " ..."
print(preview)
info = {'css': 'entry', 'title': entry[0], 'year': find_year(), 'preview': preview, 'entry': entry, 'recommends': list_rec(page, loc), 'articles': "Articles", 'latest': list_headlines(gather_and_sort(loc)[0:5], loc), 'tags': fill_word_cloud(curate_files(gather_files(loc)), loc), 'page': page, 'category': "diary"} info = {'css': 'entry', 'title': entry[0], 'year': find_year(), 'preview': preview, 'entry': entry, 'recommends': list_rec(page, loc), 'articles': "Articles", 'latest': list_headlines(gather_and_sort(loc)[0:5], loc), 'tags': fill_word_cloud(curate_files(gather_files(loc)), loc), 'page': page, 'category': "diary"}
abs_app_dir_path = os.path.dirname(os.path.realpath(__file__)) abs_app_dir_path = os.path.dirname(os.path.realpath(__file__))

Loading…
Cancel
Save