Browse Source

tweak wording for publish date and update. remove wishlist links from footer.

Thomas Buck 2 years ago
parent
commit
932fd8638e
1 changed files with 14 additions and 10 deletions
  1. 14
    10
      page.html

+ 14
- 10
page.html View File

73
                         print "<h1>%s</h1>" % (page.get("title", ""))
73
                         print "<h1>%s</h1>" % (page.get("title", ""))
74
 
74
 
75
                 if page.get("date", "") != "":
75
                 if page.get("date", "") != "":
76
-                    if page.get("lang", "en") == "de":
77
-                        date = datetime.strptime(page["date"], "%Y-%m-%d").strftime("%d.%m.%Y")
78
-                        print "<i>Ver&ouml;ffentlicht am %s.</i>" % date
76
+                    if page.get("title", "") == "Blog":
77
+                        if page.get("lang", "en") == "de":
78
+                            date = datetime.strptime(page["date"], "%Y-%m-%d").strftime("%d.%m.%Y")
79
+                            print "<i>Ver&ouml;ffentlicht am %s.</i>" % date
80
+                        else:
81
+                            date = datetime.strptime(page["date"], "%Y-%m-%d").strftime("%B %d, %Y")
82
+                            print "<i>Published on %s.</i>" % date
79
                     else:
83
                     else:
80
-                        date = datetime.strptime(page["date"], "%Y-%m-%d").strftime("%B %d, %Y")
81
-                        print "<i>Published at %s.</i>" % date
84
+                        if page.get("lang", "en") == "de":
85
+                            date = datetime.strptime(page["date"], "%Y-%m-%d").strftime("%d.%m.%Y")
86
+                            print "<i>Projekt gestartet am %s.</i>" % date
87
+                        else:
88
+                            date = datetime.strptime(page["date"], "%Y-%m-%d").strftime("%B %d, %Y")
89
+                            print "<i>Project started on %s.</i>" % date
82
 
90
 
83
                 if page.get("date", "") != "" and page.get("update", "") != "":
91
                 if page.get("date", "") != "" and page.get("update", "") != "":
84
                     print "<br>"
92
                     print "<br>"
89
                         print "<i>Zuletzt aktualisiert am %s.</i>" % date
97
                         print "<i>Zuletzt aktualisiert am %s.</i>" % date
90
                     else:
98
                     else:
91
                         date = datetime.strptime(page["update"], "%Y-%m-%d").strftime("%B %d, %Y")
99
                         date = datetime.strptime(page["update"], "%Y-%m-%d").strftime("%B %d, %Y")
92
-                        print "<i>Last updated at %s.</i>" % date
100
+                        print "<i>Last updated on %s.</i>" % date
93
         %-->
101
         %-->
94
         {{ __content__ }}
102
         {{ __content__ }}
95
         <hr>
103
         <hr>
118
         &middot;
126
         &middot;
119
         <a href="http://www.amazon.de/?_encoding=UTF8&amp;camp=1638&amp;creative=19454&amp;linkCode=ur2&amp;site-redirect=de&amp;tag=xythobuzorg-21">Amazon.de Affiliate</a>
127
         <a href="http://www.amazon.de/?_encoding=UTF8&amp;camp=1638&amp;creative=19454&amp;linkCode=ur2&amp;site-redirect=de&amp;tag=xythobuzorg-21">Amazon.de Affiliate</a>
120
         &middot;
128
         &middot;
121
-        <a href="http://www.amazon.de/registry/wishlist/1TURV4XV2J3VT">Amazon.de Wishlist</a>
122
-        &middot;
123
-        <a href="http://steamcommunity.com/id/xythobuz/wishlist/?sort=price">Steam Wishlist</a>
124
-        &middot;
125
         <a href="https://www.paypal.com/us/cgi-bin/webscr?cmd=_send-money&nav=1&email=xythobuz@me.com">PayPal</a>
129
         <a href="https://www.paypal.com/us/cgi-bin/webscr?cmd=_send-money&nav=1&email=xythobuz@me.com">PayPal</a>
126
     </div>
130
     </div>
127
     <script type="text/javascript" src="js/jquery.min.js"></script>
131
     <script type="text/javascript" src="js/jquery.min.js"></script>

Loading…
Cancel
Save