added femtools

master
alicestrt 4 years ago
parent 19f44e43aa
commit dffe6f6eab

@ -0,0 +1,87 @@
<style scoped>
* {
border: 0px black solid;
}
.project_title {
font-size: 40px;
font-weight: bold;
font-family: "Open Sans", sans-serif;
padding-bottom: 40px;
padding-top: 30px;
}
.description_text {
font-size: 15px;
font-family: "Roboto Mono", monospace;
padding-bottom: 10px;
}
.tags {
padding-top: 10px;
font-size: 15px;
font-style: italic;
font-family: "Roboto Mono", monospace;
}
a:hover {
color: hotpink;
text-decoration: none;
}
a {
color: black;
}
</style>
<template>
<b-container fluid>
<MenuBar/>
<b-row>
<b-col md="12">
<p class="project_title">Repository of Feminist Search Strategies</p>
</b-col>
</b-row>
<b-row>
<b-col md="4">
<div class="description_text">
<p class="tags">Workshop</p>
<p>Within this <a href="https://hackersanddesigners.nl/s/Events/p/Workshop:_Repository_of_Feminist_Search_Strategies">work session</a> we learned and exchanged about the possibilities and challenges of feminist approaches to search, and how they could be applied to a concrete contexts such as a digital library catalogs. We presented and discussed various existing projects, including XPPL and its feminist toolset.</p>
<p>This workshop was hosted together with <a href="https://hackersanddesigners.nl/">Hackers and Designers</a>, <a href="https://read-in.info/">Read-in</a>, and <a href="http://w-i-t-m.net/">Angeliki Diakrousi</a>.</p>
</div>
</b-col>
<b-col md="4">
<b-img class="img-fluid" src="media/femtools/femtools_2.JPG"></b-img>
<p></p>
<b-img class="img-fluid" src="media/femtools/femtools_1.JPG"></b-img>
</b-col>
</b-row>
</b-container>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'FemToolsPage',
data: function() {
return {
}
},
components: {
MenuBar
}
}
</script>

@ -141,6 +141,10 @@ a {
<p class="item_title"><b-link to="/unpacking">Unpacking Gender Roles</b-link></p>
<b-link to="/unpacking"><b-img class="img-fluid" src="media/unpacking.png"></b-img></b-link>
</b-col>
<b-col md="2">
<p class="item_title"><b-link to="/femtools">Repository of Feminist Search Strategies</b-link></p>
<b-link to="/femtools"><b-img class="img-fluid" src="media/femrepo.gif"></b-img></b-link>
</b-col>
</b-row>

@ -40,6 +40,7 @@ import OverunderPage from './components/OverunderPage'
import XenoPage from './components/XenoPage'
import BedchairtablePage from './components/BedchairtablePage'
import CodeartPage from './components/CodeartPage'
import FemToolsPage from './components/FemToolsPage'
Vue.config.productionTip = false
Vue.use(BootstrapVue)
@ -66,6 +67,7 @@ const router = new VueRouter({
{ path: '/xeno', component: XenoPage },
{ path: '/bedchairtable', component: BedchairtablePage },
{ path: '/codeart', component: CodeartPage },
{ path: '/femtools', component: FemToolsPage },
]

Loading…
Cancel
Save