Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions LICENSE → License.md
Original file line number Diff line number Diff line change
Expand Up @@ -672,3 +672,4 @@ may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.

19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Hackerspaces-App
================

## What is this app?

This app show the status and informations of many hackerspaces in the world with [SpaceAPI](http://spaceapi.net/) service.
You can download this app on the [Marketplace](https://marketplace.firefox.com/app/hackerspaces?src=search).

## What is look like?

![](screenshot/home.png)
![](screenshot/lab.png)
![](screenshot/about.png)


## Can I help you?

Sure! You can fork this repository, make some changes and send a *Pull request*!

31 changes: 31 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="utf-8">
<link href="css/about.css" rel="stylesheet">
<link rel="resource" type="application/l10n" href="locales/locales.ini" />
<script src="js/l10n.js"></script>
<link rel="icon" type="image/png" href="images/32.png">
<title data-l10n-id="hackerspaces-about">Hackerspaces - About</title>
</head>
<body>

<div id="retour"><a href="index.html"><img src="images/retour.png" alt="retour"/></a></div>
<div id="content">
<h1 data-l10n-id="what-is-a-hackerspace">What is a hackerspace?</h1>
<div id="source" data-l10n-id="from-wiki">From Wikipedia, the free encyclopedia</div>
<span data-l10n-id="def-hackerspace">A hackerspace (also referred to as a hacklab, makerspace or hackspace) is a community-operated workspace where people with common interests, often in computers, machining, technology, science, digital art or electronic art, can meet, socialize and collaborate. Hackerspaces have also been compared to other community-operated spaces with similar aims and mechanisms such as Fab Lab, Men's Sheds, and with commercial "for profit" companies such as TechShop.</span>
<h1 data-l10n-id="functionnalities">Functionalities</h1>
<span data-l10n-id="description">This app uses data from </span><a href="http://spaceapi.net/">Space API</a>. <span data-l10n-id="description2">And get some informations like localisation, status (open/closed), contact, etc. If you want to find a hackerspace near your location, you can visit this </span><a href="https://wiki.hackerspaces.org/Category:Country"><span data-l10n-id="page">page</span></a>.
<h1 data-l10n-id="authors">Authors</h1>
<span data-l10n-id="app-created">This app is created by 2 authors :</span><br>
<a href="http://samuelmoraes.com/">Samuel Moraes</a><br>
<a href="https://enconn.fr">Sébastien (AmarOk) Blin</a>
<h1 data-l10n-id="license">License</h1>
<span data-l10n-id="license-p">This code is under the </span><a href="https://www.gnu.org/licenses/gpl-3.0.html"><span data-l10n-id="gplv3">GPLv3 License</span></a>.
<h1 data-l10n-id="code">Code</h1>
<span data-l10n-id="get-the-code">You can get the code on the </span><a href="https://github.com/SamuelMoraesF/hackerspaces-app"><span data-l10n-id="github-repository">github repository</span></a>.
</div>

</body>
</html>
58 changes: 58 additions & 0 deletions css/about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
body, html {
background-color: #f1f1f1;
margin:0;
padding:0;
font-family: "Source Sans Pro",Calibri,Candara,Arial,sans-serif;
font-size:1.5em;
}

#retour {
width:100%;
background-color:#1E1E1E;
margin:0;
height:13%;
position:fixed;
top:0;
}

#retour img {
height:100%;
}

#content {
width:90%;
margin:auto;
margin-top:15%;
margin-bottom:30px;
text-align:justify;
}

#content h1 {
color: #1E1E1E;
}

#source {
font-size:0.8em;
}

#content a {
-moz-transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
color: #1E1E1E;
text-decoration: none;
border-bottom: dotted 1px;
}

@media only screen and (orientation: portrait){
#retour {
width:100%;
background-color:#1E1E1E;
margin:0;
height:7%;
position:fixed;
top:0;
}
}
7 changes: 0 additions & 7 deletions css/bootstrap.min.css

This file was deleted.

Loading