css-team:added a layout
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@230 a672b425-5310-4d7a-af5c-997e18724b81
This commit is contained in:
parent
1347086773
commit
f371f43f79
4 changed files with 33 additions and 7 deletions
site
23
site/_layouts/about.html
Normal file
23
site/_layouts/about.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
layout: main
|
||||
---
|
||||
<article class="post">
|
||||
|
||||
<header class="post-header">
|
||||
<h2 class="post-title NotoSansBold">{{ page.title }}</h2>
|
||||
</header>
|
||||
|
||||
<div class="post-content">
|
||||
{{ content }}
|
||||
</div>
|
||||
|
||||
</article>
|
||||
<div class="box-arrows">
|
||||
{% if page.previous-page %}
|
||||
<a id="back" href="{{ site.baseurl }}/{{ page.previous-page }}"><i class="fas fa-angle-left"></i><span>Back</span></a>
|
||||
{% endif%}
|
||||
|
||||
{% if page.next-page %}
|
||||
<a id="next" href="{{ site.baseurl }}/{{ page.next-page }}" ><span>Next</span><i class="fas fa-angle-right"></i></a>
|
||||
{% endif%}
|
||||
</div>
|
|
@ -6,9 +6,10 @@
|
|||
.list-commands li {
|
||||
border-radius: 50px;
|
||||
transition:500ms;
|
||||
margin-bottom:10px;
|
||||
|
||||
a{
|
||||
width: calc(100% - 2em - 20px);
|
||||
width: calc(100% - 2em - 25px);
|
||||
text-decoration: none;
|
||||
font-size: 2.8vh;
|
||||
font-weight: bold;
|
||||
|
@ -18,10 +19,11 @@
|
|||
}
|
||||
|
||||
.before-command {
|
||||
cursor:pointer;
|
||||
background: #6a6;
|
||||
border-radius: 100%;
|
||||
padding: 4px 12px;
|
||||
font-size: 2.8vh;
|
||||
font-size: 25px;
|
||||
transition:500ms;
|
||||
}
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@ tags:
|
|||
author: Andrea Brites Marto
|
||||
title: 7z
|
||||
---
|
||||
<p>
|
||||
A .7z. file is an archive format that stands for 7-zip. By default, Mac OS X does not
|
||||
know how to handle these files, but that is not a big deal because you can download for
|
||||
free in App Store. The program supports 7z, ZIP, CAB, ARJ, BZIP2, TAR, CPIO, RPM and DEB.<br>
|
||||
|
@ -13,7 +14,7 @@ free in App Store. The program supports 7z, ZIP, CAB, ARJ, BZIP2, TAR, CPIO, RPM
|
|||
So, first of all, you need to download Unarchiver in order to use this command.<br>
|
||||
|
||||
The basic syntax is:
|
||||
|
||||
</p>
|
||||
<pre>
|
||||
7z [adeltux] [-] [SWITCH] <code><ARCHIVE_NAME> <ARGUMENTS></code>
|
||||
</pre>
|
||||
|
@ -37,10 +38,10 @@ from archive archive.zip to the current directory.
|
|||
7z e archive.zip
|
||||
</pre>
|
||||
|
||||
Well, now we talk about the switches.
|
||||
There are many type of switches, we will see the most common ones.
|
||||
<p>Well, now we talk about the switches.
|
||||
There are many type of switches, we will see the most common ones.</p>
|
||||
|
||||
<h3>-m (Set compression Method)<h3>
|
||||
<h3>-m (Set compression Method)</h3>
|
||||
|
||||
<p>Specifies the compression method</p>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
layout: page
|
||||
layout: about
|
||||
category-page: about
|
||||
category-title: About
|
||||
tags: motivation why important
|
||||
|
|
Loading…
Reference in a new issue