diff --git a/site/global.css b/site/global.css index abf3e9e..4728411 100644 --- a/site/global.css +++ b/site/global.css @@ -21,7 +21,7 @@ html { body { margin: 1em auto; width: 100%; - max-width: 1000px; + max-width: 1200px; line-height: 1.25; font-size: 0.9em; font-family: 'Comic Relief', serif; @@ -100,5 +100,5 @@ ul { } div { - font-size: 1.2em; + font-size: 1.45em; } \ No newline at end of file diff --git a/site/index.html b/site/index.html index 433767d..200a523 100644 --- a/site/index.html +++ b/site/index.html @@ -48,7 +48,7 @@ diff --git a/site/pages/credits.html b/site/pages/credits.html index 442d276..c983d56 100644 --- a/site/pages/credits.html +++ b/site/pages/credits.html @@ -55,6 +55,7 @@
  • cyber.dabamos.de/88x31/
  • +
  • Web Revivalism: What is the Web Revival?
  • diff --git a/site/pages/notes.html b/site/pages/notes.html index de7f9ae..9012f6a 100644 --- a/site/pages/notes.html +++ b/site/pages/notes.html @@ -35,23 +35,6 @@ -
    -
    -
    pages
    -
    - - - -
    -
    -
    - -
    -
    diff --git a/site/posts.js b/site/posts.js index bb84f8f..863e201 100644 --- a/site/posts.js +++ b/site/posts.js @@ -1,9 +1,14 @@ let posts = { - 'first post!': 'first-post' + 'first post!': 'first-post', } Object.keys(posts).forEach(post => { - document.getElementById('posts_list').innerHTML += ` + if (post.length > 35) + document.getElementById('posts_list').innerHTML += ` +
  • ${post.slice(0, 35)}...
  • + ` + else + document.getElementById('posts_list').innerHTML += `
  • ${post}
  • ` }); \ No newline at end of file