Browse Source

revisione

Francesco Cappelli 3 years ago
parent
commit
e55ef2e056
4 changed files with 93 additions and 48 deletions
  1. 2 1
      .gitignore
  2. 79 47
      index.html
  3. 3 0
      nbproject/project.properties
  4. 9 0
      nbproject/project.xml

+ 2 - 1
.gitignore

@@ -9,4 +9,5 @@ log/*.log
 tmp/**
 tmp/**
 node_modules/
 node_modules/
 .sass-cache
 .sass-cache
-dist/*.map
+dist/*.map
+/nbproject/private/

+ 79 - 47
index.html

@@ -1,22 +1,38 @@
 <!doctype html>
 <!doctype html>
 <html>
 <html>
-	<head>
-		<meta charset="utf-8">
-		<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
+    <head>
+        <meta charset="utf-8">
+        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
 
 
-		<title>reveal.js</title>
+        <title>reveal.js</title>
 
 
-		<link rel="stylesheet" href="dist/reset.css">
-		<link rel="stylesheet" href="dist/reveal.css">
-		<link rel="stylesheet" href="dist/theme/night.css" id="theme">
+        <link rel="stylesheet" href="dist/reset.css">
+        <link rel="stylesheet" href="dist/reveal.css">
+        <link rel="stylesheet" href="dist/theme/night.css" id="theme">
 
 
-		<!-- Theme used for syntax highlighted code -->
-		<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
-	</head>
-	<body>
-		<div class="reveal">
-			<div class="slides">
-				<section>
+        <!-- Theme used for syntax highlighted code -->
+        <link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
+        <style>
+            .row {
+                display: flex;
+                flex-direction: row;
+                flex-wrap: wrap;
+                width: 100%;
+            }
+
+            .column {
+                display: flex;
+                flex-direction: column;
+                flex-basis: 100%;
+                flex: 1;
+            }
+
+        </style>
+    </head>
+    <body>
+        <div class="reveal">
+            <div class="slides">
+                <section>
                     <h2>Mattermost</h2>
                     <h2>Mattermost</h2>
                     <span>È un software open-source per la collaborazione in un ambiente "chat-like".</span>
                     <span>È un software open-source per la collaborazione in un ambiente "chat-like".</span>
                     <img data-src="imgs/mm-devices.png" style="width: 60%; height: 60%">
                     <img data-src="imgs/mm-devices.png" style="width: 60%; height: 60%">
@@ -24,22 +40,24 @@
                 </section>
                 </section>
                 <section>
                 <section>
                     <h3>Non solo "chat"...</h3>
                     <h3>Non solo "chat"...</h3>
-                    <div style="float: left; width: 130px;">
-                        <img data-src="imgs/MattermostUserList.png">
-                    </div>
-                    <div style="float: right">
-                        <ul>
-                            <li>Accessibile da browser e app Android/IOS.</li>
-                            <li>Messaggi sincroni e asincroni.</li>
-                            <li>Storico delle conversazioni.</li>
-                            <li>Notifiche su desktop e smartphone.</li>
-                            <li>Condivisione documenti e immagini.</li>
-                            <li>Gestione dei thread dei messaggi.</li>
-                            <li>Messaggi diretti e canali privati.</li>
-                            <li>Canali tematici privati, pubblici o temporanei.</li>
-                            <li>Supporto per i gruppi di lavoro.</li>
-                            <li>Ma soprattutto INTEGRAZIONE...</li>
-                        </ul>
+                    <div class='row'>
+                        <div class="column">
+                            <img data-src="imgs/MattermostUserList.png">
+                        </div>
+                        <div class="column" style="font-size: 70%">
+                            <ul>
+                                <li>Accessibile da browser e app Android/IOS.</li>
+                                <li>Messaggi sincroni e asincroni.</li>
+                                <li>Storico delle conversazioni.</li>
+                                <li>Notifiche su desktop e smartphone.</li>
+                                <li>Condivisione documenti e immagini.</li>
+                                <li>Gestione dei thread dei messaggi.</li>
+                                <li>Messaggi diretti e canali privati.</li>
+                                <li>Canali tematici privati, pubblici o temporanei.</li>
+                                <li>Supporto per i gruppi di lavoro.</li>
+                                <li>Ma soprattutto INTEGRAZIONE...</li>
+                            </ul>
+                        </div>
                     </div>
                     </div>
                 </section>
                 </section>
                 <section>
                 <section>
@@ -54,23 +72,37 @@
                         </ul>
                         </ul>
                     </div>
                     </div>
                 </section>
                 </section>
-			</div>
-		</div>
+                <section data-markdown>
+                    <textarea data-template>
+|Pro e contro|si|no|
+|-|-|-|
+|tradotto in italiano?|sì| |
+|funziona offline?||no|
+|app per lo smarpthone?|sì||
+|ha una comunità ampia? >=1000pp|sì| |
+|è in sviluppo stabile?|sì||
+|interoperabile con altri software/formati?|sì||
+|interoperabile su win e mac?|sì||
+|personalizzabile?|sì||
+                    </textarea>
+                </section>
+            </div>
+        </div>
 
 
-		<script src="dist/reveal.js"></script>
-		<script src="plugin/notes/notes.js"></script>
-		<script src="plugin/markdown/markdown.js"></script>
-		<script src="plugin/highlight/highlight.js"></script>
-		<script>
-			// More info about initialization & config:
-			// - https://revealjs.com/initialization/
-			// - https://revealjs.com/config/
-			Reveal.initialize({
-				hash: true,
+        <script src="dist/reveal.js"></script>
+        <script src="plugin/notes/notes.js"></script>
+        <script src="plugin/markdown/markdown.js"></script>
+        <script src="plugin/highlight/highlight.js"></script>
+        <script>
+            // More info about initialization & config:
+            // - https://revealjs.com/initialization/
+            // - https://revealjs.com/config/
+            Reveal.initialize({
+                hash: true,
 
 
-				// Learn about plugins: https://revealjs.com/plugins/
-				plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
-			});
-		</script>
-	</body>
+                // Learn about plugins: https://revealjs.com/plugins/
+                plugins: [RevealMarkdown, RevealHighlight, RevealNotes]
+            });
+        </script>
+    </body>
 </html>
 </html>

+ 3 - 0
nbproject/project.properties

@@ -0,0 +1,3 @@
+files.encoding=UTF-8
+site.root.folder=
+source.folder=

+ 9 - 0
nbproject/project.xml

@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://www.netbeans.org/ns/project/1">
+    <type>org.netbeans.modules.web.clientproject</type>
+    <configuration>
+        <data xmlns="http://www.netbeans.org/ns/clientside-project/1">
+            <name>reveal.js</name>
+        </data>
+    </configuration>
+</project>