From 1b70508f7d1d69720d1a5fe96a15c8a587950e1e Mon Sep 17 00:00:00 2001 From: "mb@mb" Date: Fri, 9 Mar 2018 19:15:21 +0100 Subject: [PATCH 1/7] turning each image into a link on the stream page --- themes/varia/templates/page.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/varia/templates/page.html b/themes/varia/templates/page.html index 655a6ca50d..c1c48664e6 100644 --- a/themes/varia/templates/page.html +++ b/themes/varia/templates/page.html @@ -29,7 +29,7 @@ {% if page.slug == 'stream' %}
{% for img in page.stream %} -
+
{% endfor %}
{% endif %} From 22cb33f5f8db1db903d25355c828ae617071b281 Mon Sep 17 00:00:00 2001 From: "mb@mb" Date: Fri, 9 Mar 2018 19:36:09 +0100 Subject: [PATCH 2/7] fixing Roel's stream effect again --- plugins-custom | 2 +- themes/varia/static/css/main.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins-custom b/plugins-custom index 5364009530..baec319404 160000 --- a/plugins-custom +++ b/plugins-custom @@ -1 +1 @@ -Subproject commit 53640095309c741081113d38c4566428d0e67b03 +Subproject commit baec319404f537767e08c667e448edbde2d1d026 diff --git a/themes/varia/static/css/main.css b/themes/varia/static/css/main.css index f895c4dcc7..fd00552c5f 100644 --- a/themes/varia/static/css/main.css +++ b/themes/varia/static/css/main.css @@ -196,10 +196,10 @@ header { margin: 0 1em 1em 0; }*/ - div.container:nth-child(2n) { + div.container a:nth-child(2n) { transform: skew(-2deg); } - div.container:nth-child(2n+1) { + div.container a:nth-child(2n+1) { transform: skew(2deg); } From 54efc0db2cffe09c0112b0a87f21e76116721d25 Mon Sep 17 00:00:00 2001 From: "mb@mb" Date: Fri, 9 Mar 2018 19:42:49 +0100 Subject: [PATCH 3/7] now really fixing roel's css work --- plugins-custom | 2 +- themes/varia/static/css/main.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins-custom b/plugins-custom index baec319404..5364009530 160000 --- a/plugins-custom +++ b/plugins-custom @@ -1 +1 @@ -Subproject commit baec319404f537767e08c667e448edbde2d1d026 +Subproject commit 53640095309c741081113d38c4566428d0e67b03 diff --git a/themes/varia/static/css/main.css b/themes/varia/static/css/main.css index fd00552c5f..3c96d05f38 100644 --- a/themes/varia/static/css/main.css +++ b/themes/varia/static/css/main.css @@ -196,10 +196,10 @@ header { margin: 0 1em 1em 0; }*/ - div.container a:nth-child(2n) { + div#stream:nth-child(2n) { transform: skew(-2deg); } - div.container a:nth-child(2n+1) { + div#stream:nth-child(2n+1) { transform: skew(2deg); } From a362a27f60d694fea120fa97832c171cc2153c55 Mon Sep 17 00:00:00 2001 From: "mb@mb" Date: Fri, 9 Mar 2018 19:57:16 +0100 Subject: [PATCH 4/7] now really fixing the stream --- themes/varia/static/css/main.css | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/themes/varia/static/css/main.css b/themes/varia/static/css/main.css index 3c96d05f38..1eae1ed76a 100644 --- a/themes/varia/static/css/main.css +++ b/themes/varia/static/css/main.css @@ -172,35 +172,36 @@ header { #stream{ - display: inline-block; + position: absolute; + width: 100%; } - #stream .container{ + #stream a .container{ background-clip: padding-box; background-position: center center; background-size: cover; height: 600px; width: 100%; + background-color: black; } /* reset header img styles */ - #stream .container img{ + #stream a .container img{ min-width: none; min-height: none; width: none; height: none; } + #stream a{ + display: block; + } #stream.overview{ width: 100%; } -/* #stream.overview .container{ - margin: 0 1em 1em 0; - }*/ - - div#stream:nth-child(2n) { - transform: skew(-2deg); + div#stream a:nth-child(odd) { + transform: skew(-2deg); } - div#stream:nth-child(2n+1) { - transform: skew(2deg); + div#stream a:nth-child(even) { + transform: skew(2deg); } #translation{ From f5eb88b346d9f07617d565e30cd1414c81530c64 Mon Sep 17 00:00:00 2001 From: "mb@mb" Date: Sat, 10 Mar 2018 16:29:05 +0100 Subject: [PATCH 5/7] adding cbk credits --- content/algologs.en.md | 4 ++++ content/algologs.nl.md | 5 +++++ content/images/cbkrotterdam.png | Bin 0 -> 607 bytes 3 files changed, 9 insertions(+) create mode 100644 content/images/cbkrotterdam.png diff --git a/content/algologs.en.md b/content/algologs.en.md index edf98f3dc2..5bf0e20b49 100644 --- a/content/algologs.en.md +++ b/content/algologs.en.md @@ -70,5 +70,9 @@ Varia - Gouwstraat 3, Rotterdam
* [You should know a word by the compant it keeps](http://www.algolit.net/index.php/You_shall_know_a_word_by_the_company_it_keeps), graphs generated by word2vec * [Crowd Embeddings](http://www.algolit.net/index.php/Crowd_Embeddings), a first-step into a case study of applied word-embeddings +---- + +The research project of Cristina Cochior is kindly supported by ![cbk rotterdam](/images/cbkrotterdam.png). + diff --git a/content/algologs.nl.md b/content/algologs.nl.md index 82e64e24f6..9115381c91 100644 --- a/content/algologs.nl.md +++ b/content/algologs.nl.md @@ -70,5 +70,10 @@ Varia - Gouwstraat 3, Rotterdam
* [You should know a word by the compant it keeps](http://www.algolit.net/index.php/You_shall_know_a_word_by_the_company_it_keeps), grafieken gegenereerd door word2vec * [Crowd Embeddings](http://www.algolit.net/index.php/Crowd_Embeddings), een eerste stap naar een case study rondom toegepaste woordinbeddingen +---- + +Het onderzoeksproject van Cristina Cochior is mede mogelijk gemaakt met een financiƫle bijdrage van CBK Rotterdam ![cbk rotterdam](/images/cbkrotterdam.png). + + diff --git a/content/images/cbkrotterdam.png b/content/images/cbkrotterdam.png new file mode 100644 index 0000000000000000000000000000000000000000..c660eb356272541bcd3d172de1faa59fb8f86b38 GIT binary patch literal 607 zcmeAS@N?(olHy`uVBq!ia0vp^DIhinGmy+UZv6#FB?S0{xZbyyzpt-<-&E_lzWP&R zohSNQkBu}Q8*4u@)OuvB`N&ZFiILV5L(RuV+K&yi9s{|?+D{CDYP6pkYCi=@0Tn>h zXoJ)kYJs>=T_C9}?`b+fyBJG?{DK)Ap4~_Tagw~>BL6ZiY8{wR1d;c29PS5MlV?v$DOkvysho&ke`e ze!FO!?#BWOr}k-;RXTS6JU!blbrQGb4wLW?PL*AbLR0?Au*$i#A9Pvy?Bo`2%k#%F zvc%(8{db?VLvQMyosRPlt)F&Eo0DV8%L)DE8`s2p9O9oOZ5Uoy6TG6(a9^}=hmzX< zGLO26cebj&Iy?Kx)%QZ5x>=T(CuVsndS_YBWb zIif#dd#?lAHn&YHmF_=NiOQJeAvUY6&1YiH;r6TL((I-?S*&F^_jqjk7O0aHZgX|V zzkf%Ug?TOzXNXt7=bNnD__E$@TK03rO;3+>osPJ-djHnSqjxJxm}O5E|9BCs@pZ%M c7jypbe=`kaRZK5P1V#&kr>mdKI;Vst0PYd|=l}o! literal 0 HcmV?d00001 From 23886aaae998dba1afafdc889d031d3ea83507fe Mon Sep 17 00:00:00 2001 From: "mb@mb" Date: Sat, 10 Mar 2018 16:33:59 +0100 Subject: [PATCH 6/7] website weird margins test --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index f9538c879b..31b1e10f49 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ - - # Varia website ## Cloning From c422fa51faa8236d3a77271c82a77bee386624cb Mon Sep 17 00:00:00 2001 From: "mb@mb" Date: Sat, 10 Mar 2018 16:37:56 +0100 Subject: [PATCH 7/7] adding margin to the body to have a steady --- themes/varia/static/css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/varia/static/css/main.css b/themes/varia/static/css/main.css index 1eae1ed76a..8658a4ef43 100644 --- a/themes/varia/static/css/main.css +++ b/themes/varia/static/css/main.css @@ -34,7 +34,7 @@ body{ min-width: 500px; top:0px; left:0px; - margin:0 auto 5em auto; + margin:14px auto 5em auto; padding: 0px 15px; font-family: "main", monospace; font-size: 14px;