aboutsummaryrefslogtreecommitdiff
path: root/about.html
AgeCommit message (Collapse)AuthorLines
2020-11-28Figure added for showing file architectureMohammad Akhlaghi-7/+7
In the initial version of the paper, we had this nice figure to show the file structure of Maneage, so I thought its good to put it in the page describing Maneage's file architecture. Also, the long copyright at the end of the page was summarized into one line and a link to the GPL has been added.
2020-11-26The long about.hml is now broken up into smaller pagesMohammad Akhlaghi-1191/+15
The "About" page ('about.html') was effectively a full copy of Maneage's 'README-hacking.md', so it was very long. To help in readability it has now been broken down into smaller pages (one for each section). Also the indentation of Make recipes was corrected, both in the about pages, and also in the tutorial.
2020-06-04Update supporting organizations lookPedram Ashofteh Ardakani-16/+15
* Resized and relocated logos for a better look * Moved the copyright comments in `html` files because Firefox was complaining it could not find the `encoding character set` could not be found in the first `1024 bytes` of the file
2020-06-04Update footer style and copyright noticePedram Ashofteh Ardakani-0/+1
* Fix line-height problem * Use lighter link colors * Add the logo copyrights
2020-06-01Add page footerPedram Ashofteh Ardakani-0/+9
* The `People` page will be added later * This is almost the simplest design possible, we will alter the design to match the desired and defined look later
2020-05-07Change `burger` menu behavior, minor fixesPedram Ashofteh Ardakani-1/+2
* Add more comments in CSS * Fill the entire top with nav bar in smaller screens * Rotate the `burger` menu 180degrees and change color on click * Replace the `burger` unicode with pipe `|` in other pages too * Add the licensing info in other pages too * Increase the page width for more space
2020-05-07Fix `Git` button and the `hamburger` menu labelPedram Ashofteh Ardakani-1/+1
* The `hamburger` label is not showing properly in different browsers. Maybe that specific html unicode is not supported in all browsers. I used a trick to fix this issue using the pipe character `|` ;-) You could read about that here too: https://stackoverflow.com/a/61645811/6474744 * The `down-arrow` unicode also did not work as expected through some browsers. It was decided to remove this label totally. Maybe later we can adopt using `standard` unicode html characters that are `known` to be widely used across various browsers in different platforms.
2020-05-05Add comments, mind the CSS stylingPedram Ashofteh Ardakani-4/+4
* Clarify selectors and elements with comments * Delete duplicate styles * Change ID names to something that makes more sense
2020-05-05Replace `Git Repository` nav button with `Git`Pedram Ashofteh Ardakani-1/+1
To prevent unwanted word wrapping. Plus, less is more.
2020-05-03Fix footers in HTMLPedram Ashofteh Ardakani-2/+4
* Wrap in <footer> tag * Add ARIA role * Add ID's so they can be referenced to via anchors * Fixed typo in head
2020-05-03Replace (C) in html with &copy; symbolPedram Ashofteh Ardakani-2/+2
2020-05-03Remove extra spacing before and after code blocksPedram Ashofteh Ardakani-77/+35
Until now, the extra space made the padding look too big. * Changed this HTML code convention: ```html <pre><code> some code </code></pre> ``` * to this: ```html <pre><code>some code</code></pre> ``` And the extra space is gone.
2020-05-01Create header banner for everypagePedram Ashofteh Ardakani-5/+11
Now, every page has a banner with Maneage logo on it. Fixed the html and css both.
2020-05-01about: Put loose links in <p> inside <ul> and <a>Pedram Ashofteh Ardakani-6/+11
2020-05-01Fix top navigation linksPedram Ashofteh Ardakani-1/+1
Make them identical. Just four items.
2020-04-29Fix indentationsPedram Ashofteh Ardakani-379/+391
2020-04-29about: Fix code blocksPedram Ashofteh Ardakani-1230/+1278
Maybe we should create a side navigation toolbar.
2020-04-29about.html: initial Markdown to HTML conversionPedram Ashofteh Ardakani-0/+1240
Used the https://daringfireball.net/projects/markdown/ project.