First Commit
Setup repo and website
7
.vscode/sftp.json
vendored
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"protocol": "ftp",
|
||||||
|
"host": "www.bittime.it",
|
||||||
|
"port": 21,
|
||||||
|
"username": "website",
|
||||||
|
"remotePath": "/"
|
||||||
|
}
|
||||||
2
cerimoniere-website-source/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
/resources/
|
||||||
|
/public/
|
||||||
29
cerimoniere-website-source/README.md
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
# README #
|
||||||
|
|
||||||
|
This README would normally document whatever steps are necessary to get your application up and running.
|
||||||
|
|
||||||
|
### What is this repository for? ###
|
||||||
|
|
||||||
|
* Quick summary
|
||||||
|
* Version
|
||||||
|
* [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
|
||||||
|
|
||||||
|
### How do I get set up? ###
|
||||||
|
|
||||||
|
* Summary of set up
|
||||||
|
* Configuration
|
||||||
|
* Dependencies
|
||||||
|
* Database configuration
|
||||||
|
* How to run tests
|
||||||
|
* Deployment instructions
|
||||||
|
|
||||||
|
### Contribution guidelines ###
|
||||||
|
|
||||||
|
* Writing tests
|
||||||
|
* Code review
|
||||||
|
* Other guidelines
|
||||||
|
|
||||||
|
### Who do I talk to? ###
|
||||||
|
|
||||||
|
* Repo owner or admin
|
||||||
|
* Other community or team contact
|
||||||
6
cerimoniere-website-source/archetypes/default.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
||||||
35
cerimoniere-website-source/assets/scss/_mixins.scss
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
@mixin mobile-xs{
|
||||||
|
@media(max-width:400px){
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@mixin mobile{
|
||||||
|
@media(max-width:575px){
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@mixin tablet{
|
||||||
|
@media(max-width:767px){
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@mixin desktop{
|
||||||
|
@media(max-width:991px){
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@mixin desktop-lg{
|
||||||
|
@media(max-width:1199px){
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin desktop-xl{
|
||||||
|
@media(max-width:1499px){
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin size($size){
|
||||||
|
width: $size; height: $size;
|
||||||
|
}
|
||||||
626
cerimoniere-website-source/assets/scss/style.scss
Normal file
@@ -0,0 +1,626 @@
|
|||||||
|
@import 'mixins';
|
||||||
|
|
||||||
|
// Variables
|
||||||
|
$primary-font: 'Josefin Sans',
|
||||||
|
sans-serif;
|
||||||
|
$secondary-font: 'Droid Serif',
|
||||||
|
serif;
|
||||||
|
// $primary-color: #f9a743;
|
||||||
|
$primary-color: #59a9d2;
|
||||||
|
$icon-font: 'themefisher-font' !important;
|
||||||
|
|
||||||
|
/*--
|
||||||
|
Common Css
|
||||||
|
--*/
|
||||||
|
body {
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 300;
|
||||||
|
line-height: 25px;
|
||||||
|
color: #3b4045;
|
||||||
|
font-family: $primary-font;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.preloader {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
background-color: #fff;
|
||||||
|
z-index: 999999;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
font-weight: 300;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
.h1 {
|
||||||
|
font-size: 44px;
|
||||||
|
line-height: 56px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2,
|
||||||
|
.h2 {
|
||||||
|
font-size: 30px;
|
||||||
|
line-height: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3,
|
||||||
|
.h3 {
|
||||||
|
font-size: 23px;
|
||||||
|
line-height: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4,
|
||||||
|
.h4 {
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 24px;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
-webkit-transition: all 0.2s ease-in-out 0s;
|
||||||
|
-moz-transition: all 0.2s ease-in-out 0s;
|
||||||
|
-o-transition: all 0.2s ease-in-out 0s;
|
||||||
|
transition: all 0.2s ease-in-out 0s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mt-100 {
|
||||||
|
margin-top: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-1 {
|
||||||
|
background-image: url(../images/call-to-action.jpg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-orange {
|
||||||
|
background: $primary-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-primary-color {
|
||||||
|
color: $primary-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-opacity {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
background: rgba(0, 0, 0, 0.7);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
a:focus,
|
||||||
|
.btn:focus,
|
||||||
|
.btn:active:focus {
|
||||||
|
box-shadow: none;
|
||||||
|
outline: 0 none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a,
|
||||||
|
a:active,
|
||||||
|
a:focus,
|
||||||
|
a:active {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section {
|
||||||
|
padding: 100px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.font-size-60 {
|
||||||
|
font-size: 60px;
|
||||||
|
line-height: 1.2;
|
||||||
|
|
||||||
|
@include mobile {
|
||||||
|
font-size: 40px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.mb-10 {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mb-40 {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-slide {
|
||||||
|
outline: 0
|
||||||
|
}
|
||||||
|
|
||||||
|
/*--
|
||||||
|
custom heading
|
||||||
|
--*/
|
||||||
|
.text-center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading {
|
||||||
|
text-align: center;
|
||||||
|
color: #777777;
|
||||||
|
padding-bottom: 70px;
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
color: #3c3c3c;
|
||||||
|
padding-bottom: 15px;
|
||||||
|
text-transform: capitalize;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 40px;
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 17px;
|
||||||
|
line-height: 24px;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.subheading {
|
||||||
|
color: #3c3c3c;
|
||||||
|
padding-bottom: 15px;
|
||||||
|
text-transform: capitalize;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 32px;
|
||||||
|
line-height: 45px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-main {
|
||||||
|
color: #fff;
|
||||||
|
border-radius: 30px;
|
||||||
|
font-size: 18px;
|
||||||
|
padding: 15px 40px;
|
||||||
|
display: inline-block;
|
||||||
|
background-color: $primary-color;
|
||||||
|
/* box-shadow: 0 15px 40px rgba(249, 167, 68, 0.5); */
|
||||||
|
background-image: linear-gradient(bottom, rgba(255, 239, 206, 0) 0%, rgba(255, 239, 206, 0.25) 100%);
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&:focus {
|
||||||
|
background-color: $primary-color;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-main-sm {
|
||||||
|
padding: 12px 35px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* navigation */
|
||||||
|
.navbar {
|
||||||
|
&-brand {
|
||||||
|
color: #444;
|
||||||
|
font-size: 25px;
|
||||||
|
margin: 0;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-link {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 10px 20px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-light .navbar-nav .nav-link {
|
||||||
|
color: #444;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lang-list {
|
||||||
|
border: 0;
|
||||||
|
margin: 10px 20px;
|
||||||
|
font-size: 16px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* cart */
|
||||||
|
.cart {
|
||||||
|
background: transparent;
|
||||||
|
border: 0;
|
||||||
|
position: relative;
|
||||||
|
i{
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include desktop {
|
||||||
|
position: absolute;
|
||||||
|
top: 23px;
|
||||||
|
right: 90px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.badge {
|
||||||
|
position: absolute;
|
||||||
|
top: -5px;
|
||||||
|
border-radius: 50%;
|
||||||
|
right: -10px;
|
||||||
|
|
||||||
|
}
|
||||||
|
&:focus{
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.badge-primary{
|
||||||
|
background-color: $primary-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*--
|
||||||
|
Feature-list start
|
||||||
|
--*/
|
||||||
|
.feature-list {
|
||||||
|
.btn-main {
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*--
|
||||||
|
Gallery start
|
||||||
|
--*/
|
||||||
|
.gallery {
|
||||||
|
padding-bottom: 100px;
|
||||||
|
|
||||||
|
.owl-item {
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block {
|
||||||
|
padding: 20px;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&:hover .gallery-overlay {
|
||||||
|
transform: scale(1);
|
||||||
|
opacity: 1;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery-overlay {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 15px;
|
||||||
|
left: 15px;
|
||||||
|
right: 15px;
|
||||||
|
top: 15px;
|
||||||
|
background: rgba(255, 255, 255, 0.85);
|
||||||
|
text-decoration: none;
|
||||||
|
color: inherit;
|
||||||
|
-webkit-transform: scale(.7);
|
||||||
|
transform: scale(.7);
|
||||||
|
-webkit-transition: .3s ease-in-out;
|
||||||
|
transition: .3s ease-in-out;
|
||||||
|
z-index: 2;
|
||||||
|
opacity: 0;
|
||||||
|
border-radius: 50%;
|
||||||
|
|
||||||
|
.gallery-popup {
|
||||||
|
text-align: center;
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
-webkit-transform: translate(-50%, -50%);
|
||||||
|
-ms-transform: translate(-50%, -50%);
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
background: $primary-color;
|
||||||
|
padding: 5px 10px;
|
||||||
|
border-radius: 40px;
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
|
||||||
|
i {
|
||||||
|
color: #fff;
|
||||||
|
font-size: 30px;
|
||||||
|
line-height: 40px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*--
|
||||||
|
service start
|
||||||
|
--*/
|
||||||
|
.testimonials {
|
||||||
|
.testimonial-block {
|
||||||
|
padding: 0 10px;
|
||||||
|
|
||||||
|
i {
|
||||||
|
font-size: 40px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
color: $primary-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-family: $secondary-font;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
.author-details {
|
||||||
|
margin-top: 30px;
|
||||||
|
|
||||||
|
img {
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 20px;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*--
|
||||||
|
call-to-action start
|
||||||
|
--*/
|
||||||
|
.call-to-action {
|
||||||
|
background-attachment: fixed;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-group {
|
||||||
|
margin-top: 30px;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.btn-submit {
|
||||||
|
padding: 10.5px 40px !important;
|
||||||
|
position: absolute;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
height: 50px;
|
||||||
|
border-radius: 40px;
|
||||||
|
border: none;
|
||||||
|
padding-left: 15px;
|
||||||
|
box-shadow: none;
|
||||||
|
display: table-cell;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-menu {
|
||||||
|
a {
|
||||||
|
font-size: 14;
|
||||||
|
font-weight: 700;
|
||||||
|
color: #444;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
text-align: center;
|
||||||
|
background: #f4f4f4;
|
||||||
|
padding: 50px 0px;
|
||||||
|
|
||||||
|
.footer-logo {
|
||||||
|
color: #555;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.copyright-text {
|
||||||
|
font-weight: 300;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #888;
|
||||||
|
letter-spacing: 3px;
|
||||||
|
margin-top: 15px;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #282828;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// product single
|
||||||
|
p.price {
|
||||||
|
font-size: 30px;
|
||||||
|
font-family: $secondary-font;
|
||||||
|
}
|
||||||
|
|
||||||
|
s.price {
|
||||||
|
color: red;
|
||||||
|
font-size: 25px;
|
||||||
|
font-family: $secondary-font;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-info {
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
.price {
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// contact list
|
||||||
|
.contact-list {
|
||||||
|
|
||||||
|
li,
|
||||||
|
a {
|
||||||
|
color: #282828;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-control {
|
||||||
|
border: 1px solid #dadada;
|
||||||
|
border-radius: 35px;
|
||||||
|
height: 50px;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
border-color: $primary-color;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::placeholder {
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea.form-control {
|
||||||
|
height: 150px;
|
||||||
|
padding-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sticky-image {
|
||||||
|
position: sticky;
|
||||||
|
top: 100px;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* product sinngle page */
|
||||||
|
|
||||||
|
.product-image-slider {
|
||||||
|
position: sticky;
|
||||||
|
top: 80px;
|
||||||
|
.slick-list {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slick-dots {
|
||||||
|
margin-top: 10px;
|
||||||
|
padding-left: 0;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
li {
|
||||||
|
list-style-type: none;
|
||||||
|
margin: 10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-height: 80px;
|
||||||
|
height: auto;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* content style */
|
||||||
|
.content {
|
||||||
|
* {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol,ul {
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
text-align: left;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 100%;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
border: 1px solid #dee2e6;
|
||||||
|
|
||||||
|
th,
|
||||||
|
td {
|
||||||
|
padding: .75rem;
|
||||||
|
vertical-align: top;
|
||||||
|
border: 1px solid #dee2e6
|
||||||
|
}
|
||||||
|
|
||||||
|
thead {
|
||||||
|
background: darken($color: #dadada, $amount: 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
tbody {
|
||||||
|
background: #dadada;
|
||||||
|
|
||||||
|
td {
|
||||||
|
text-align: left !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
border-left: 1px solid $primary-color;
|
||||||
|
padding: 20px;
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-bottom: 0;
|
||||||
|
font-style: italic;
|
||||||
|
font-size: 22px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
padding: 10px 20px;
|
||||||
|
background: #dadada;
|
||||||
|
}
|
||||||
|
}
|
||||||
107
cerimoniere-website-source/config.toml
Normal file
@@ -0,0 +1,107 @@
|
|||||||
|
################################### Default Configuration ############################
|
||||||
|
baseurl = "https://www.delphistudio.es/maestrodeceremonias/"
|
||||||
|
title = "Cerimoniere Web"
|
||||||
|
theme = "vex-hugo"
|
||||||
|
# post excert
|
||||||
|
summarylength = "20"
|
||||||
|
# google analytics
|
||||||
|
googleAnalytics = "" # Ex: UA-123-45
|
||||||
|
# disable language
|
||||||
|
disableLanguages = [] # desable language from here
|
||||||
|
defaultContentLanguage = 'es'
|
||||||
|
|
||||||
|
#################################### Plugins ##########################################
|
||||||
|
|
||||||
|
# CSS Plugins
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "https://fonts.googleapis.com/css?family=Droid+Serif:400|Josefin+Sans:300,400,600,700"
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "plugins/bootstrap/bootstrap.min.css"
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "plugins/themefisher-font/themefisher-font.min.css"
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "plugins/slick/slick.min.css"
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "https://cdn.snipcart.com/themes/v3.0.3/default/snipcart.css"
|
||||||
|
|
||||||
|
# JS Plugins
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/jquery/jquery.js"
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/bootstrap/bootstrap.min.js"
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/slick/slick.min.js"
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "https://cdn.snipcart.com/themes/v3.0.3/default/snipcart.js"
|
||||||
|
|
||||||
|
|
||||||
|
########################### Default parameters ##########################
|
||||||
|
[params]
|
||||||
|
logo = "images/logo_cerimoniere_header.png"
|
||||||
|
logo_width = "100px"
|
||||||
|
# Meta data
|
||||||
|
description = "This is meta description"
|
||||||
|
author = "Themefisher"
|
||||||
|
# currency
|
||||||
|
currency = "$"
|
||||||
|
# contact form action
|
||||||
|
contact_form_action = "#" # contact form works with https://formspree.io
|
||||||
|
# snipcart public api key
|
||||||
|
snipcart_api = "ZDgxY2ZiM2EtMWRmMi00M2ZkLWI1MDAtNzA2MDc0Y2Q1MzJlNjM3MTAzNDIwOTQ1NDA4NjM4"
|
||||||
|
|
||||||
|
# Preloader
|
||||||
|
[params.preloader]
|
||||||
|
enable = true
|
||||||
|
preloader = "" # use .png , .svg or .gif format
|
||||||
|
|
||||||
|
# Subscription
|
||||||
|
[params.subscription]
|
||||||
|
# mailchimp subsciption
|
||||||
|
mailchimp_form_action = "https://gmail.us4.list-manage.com/subscribe/post?u=463ee871f45d2d93748e77cad&id=a0a2c6d074" # replace this url with yours
|
||||||
|
mailchimp_form_name = "b_463ee871f45d2d93748e77cad_a0a2c6d074" # replace this code with yours
|
||||||
|
|
||||||
|
[languages]
|
||||||
|
[languages.es]
|
||||||
|
languageName = "Es"
|
||||||
|
languageCode = "es-es"
|
||||||
|
contentDir = "content/espanol"
|
||||||
|
weight = 3
|
||||||
|
# copyright
|
||||||
|
copyright = ""
|
||||||
|
[languages.es.menu]
|
||||||
|
[[languages.es.menu.main]]
|
||||||
|
name = "Home"
|
||||||
|
URL = "/"
|
||||||
|
weight = 1
|
||||||
|
[[languages.es.menu.main]]
|
||||||
|
name = "Asientos"
|
||||||
|
URL = "palco"
|
||||||
|
weight = 2
|
||||||
|
[[languages.es.menu.main]]
|
||||||
|
name = "Datos"
|
||||||
|
URL = "anagrafica"
|
||||||
|
weight = 3
|
||||||
|
[[languages.es.menu.main]]
|
||||||
|
name = "Protocolos"
|
||||||
|
URL = "protocolli"
|
||||||
|
weight = 4
|
||||||
|
[[languages.es.menu.main]]
|
||||||
|
name = "Tutorial en Video"
|
||||||
|
URL = "https://www.youtube.com/playlist?list=PLqELe5jUzuhbq-OtDCZU_KzfykjTMdZ0R"
|
||||||
|
weight = 5
|
||||||
|
[[languages.es.menu.main]]
|
||||||
|
name = "Contacto"
|
||||||
|
URL = "https://www.bittimeprofessionals.it/contatti?info=CerimoniereWeb"
|
||||||
|
weight = 6
|
||||||
|
[[languages.es.menu.footer]]
|
||||||
|
name = "Contacto"
|
||||||
|
URL = "https://www.bittimeprofessionals.it/contatti?info=CerimoniereWeb"
|
||||||
|
weight = 1
|
||||||
|
[[languages.es.menu.footer]]
|
||||||
|
name = "Tutorial en Video"
|
||||||
|
URL = "https://www.youtube.com/playlist?list=PLqELe5jUzuhbq-OtDCZU_KzfykjTMdZ0R"
|
||||||
|
weight = 2
|
||||||
|
[[languages.es.menu.footer]]
|
||||||
|
name = "F.A.Q."
|
||||||
|
URL = "faq"
|
||||||
|
weight = 3
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
title: "Anagrafica"
|
||||||
|
description : "this is a meta description"
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
25
cerimoniere-website-source/content/espanol/contact/_index.md
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
title: "Contact"
|
||||||
|
description : "this is a meta description"
|
||||||
|
|
||||||
|
office:
|
||||||
|
title : "Central Office"
|
||||||
|
mobile : "0124857985320"
|
||||||
|
email : "demo@email.com"
|
||||||
|
location : "Dhaka, Bangladedsh"
|
||||||
|
content : "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna"
|
||||||
|
|
||||||
|
# opennig hour
|
||||||
|
opennig_hour:
|
||||||
|
title : "Opening Hours"
|
||||||
|
day_time:
|
||||||
|
- "Monday: 9:00 – 19:00"
|
||||||
|
- "Tuesday: 9:00 – 19:00"
|
||||||
|
- "Wednesday: 9:00 – 19:00"
|
||||||
|
- "Thursday: 9:00 – 19:00"
|
||||||
|
- "Friday: 9:00 – 19:00"
|
||||||
|
- "Saturday: 9:00 – 19:00"
|
||||||
|
- "sunday: 9:00 – 19:00"
|
||||||
|
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
4
cerimoniere-website-source/content/espanol/faq/_index.md
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
title: "F.A.Q."
|
||||||
|
description : "this is a meta description"
|
||||||
|
---
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
title: "Palco"
|
||||||
|
description : ""
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
---
|
||||||
|
title: "Terms & Conditions"
|
||||||
|
description : "this is a meta description"
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
Please read this terms and conditions stated below, which outline a lot of legal goodies, but the bottom line is it’s our aim to always take care of both of us, as a customer, or as a seller. We’ve included many of these terms to legally protect ourselves, but if you have an issue, always feel free to email us at contact@themefisher.com and we’ll do our best to resolve it in a fair and timely way .
|
||||||
|
|
||||||
|
### Product Buy & delivery policy
|
||||||
|
|
||||||
|
1)All payments are processed securely through PayPal or Stripe. Themefisher does not directly process payments through the website. So any kind of Problem if you face Themefisher will Not Take any responsibility.
|
||||||
|
|
||||||
|
### Product Buy & delivery policy
|
||||||
|
|
||||||
|
Please read this terms and conditions stated below, which outline a lot of legal goodies, but the bottom line is it’s our aim to always take care of both of us, as a customer, or as a seller. We’ve included many of these terms to legally protect ourselves, but if you have an issue, always feel free to email us at contact@themefisher.com and we’ll do our best to resolve it in a fair and timely way .
|
||||||
|
|
||||||
|
### Refund Policy
|
||||||
|
|
||||||
|
1) Since Themefisher is offering non-tangible and irrevocable digital products, we do NOT issue refunds after a purchase is made. If there is a problem with one of the digital download products or if you experience any difficulty with the download, we will fix the problem.
|
||||||
|
2) You have 24 hours to inspect your purchase and to determine if it does not meet with the expectations laid forth by The Themefisher. In the event that you wish to receive a refund, Themefisher will issue you a refund and ask you to specify how the product failed to live up to expectations.
|
||||||
|
3) When you make a qualifying return, We’ll credit the full amount, less the handling charges. Refunds are generally processed within 3–5 business days after we receive your claim and find it eligible for a return. Refunds are applied to the original payment option.
|
||||||
|
|
||||||
|
### Support Policy
|
||||||
|
1) Since Themefisher is offering non-tangible and irrevocable digital products, we do NOT issue refunds after a purchase is made. If there is a problem with one of the digital download products or if you experience any difficulty with the download, we will fix the problem.
|
||||||
|
2) You have 24 hours to inspect your purchase and to determine if it does not meet with the expectations laid forth by The Themefisher. In the event that you wish to receive a refund, Themefisher will issue you a refund and ask you to specify how the product failed to live up to expectations.
|
||||||
|
3) When you make a qualifying return, We’ll credit the full amount, less the handling charges. Refunds are generally processed within 3–5 business days after we receive your claim and find it eligible for a return. Refunds are applied to the original payment option.
|
||||||
|
|
||||||
|
### Why We Support:
|
||||||
|
|
||||||
|
1. Support covers getting up and help in theme setup
|
||||||
|
2. Help using features and theme options
|
||||||
|
3. Bug fixes – if you discovered a bug in the theme/Template we will fix it
|
||||||
|
4. Functionality which does not work as advertised
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
title: "Anagrafica"
|
||||||
|
description : "this is a meta description"
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
---
|
||||||
|
title: "Terms & Conditions"
|
||||||
|
description : "this is a meta description"
|
||||||
|
draft: false
|
||||||
|
---
|
||||||
|
|
||||||
|
Please read this terms and conditions stated below, which outline a lot of legal goodies, but the bottom line is it’s our aim to always take care of both of us, as a customer, or as a seller. We’ve included many of these terms to legally protect ourselves, but if you have an issue, always feel free to email us at contact@themefisher.com and we’ll do our best to resolve it in a fair and timely way .
|
||||||
|
|
||||||
|
### Product Buy & delivery policy
|
||||||
|
|
||||||
|
1)All payments are processed securely through PayPal or Stripe. Themefisher does not directly process payments through the website. So any kind of Problem if you face Themefisher will Not Take any responsibility.
|
||||||
|
|
||||||
|
### Product Buy & delivery policy
|
||||||
|
|
||||||
|
Please read this terms and conditions stated below, which outline a lot of legal goodies, but the bottom line is it’s our aim to always take care of both of us, as a customer, or as a seller. We’ve included many of these terms to legally protect ourselves, but if you have an issue, always feel free to email us at contact@themefisher.com and we’ll do our best to resolve it in a fair and timely way .
|
||||||
|
|
||||||
|
### Refund Policy
|
||||||
|
|
||||||
|
1) Since Themefisher is offering non-tangible and irrevocable digital products, we do NOT issue refunds after a purchase is made. If there is a problem with one of the digital download products or if you experience any difficulty with the download, we will fix the problem.
|
||||||
|
2) You have 24 hours to inspect your purchase and to determine if it does not meet with the expectations laid forth by The Themefisher. In the event that you wish to receive a refund, Themefisher will issue you a refund and ask you to specify how the product failed to live up to expectations.
|
||||||
|
3) When you make a qualifying return, We’ll credit the full amount, less the handling charges. Refunds are generally processed within 3–5 business days after we receive your claim and find it eligible for a return. Refunds are applied to the original payment option.
|
||||||
|
|
||||||
|
### Support Policy
|
||||||
|
1) Since Themefisher is offering non-tangible and irrevocable digital products, we do NOT issue refunds after a purchase is made. If there is a problem with one of the digital download products or if you experience any difficulty with the download, we will fix the problem.
|
||||||
|
2) You have 24 hours to inspect your purchase and to determine if it does not meet with the expectations laid forth by The Themefisher. In the event that you wish to receive a refund, Themefisher will issue you a refund and ask you to specify how the product failed to live up to expectations.
|
||||||
|
3) When you make a qualifying return, We’ll credit the full amount, less the handling charges. Refunds are generally processed within 3–5 business days after we receive your claim and find it eligible for a return. Refunds are applied to the original payment option.
|
||||||
|
|
||||||
|
### Why We Support:
|
||||||
|
|
||||||
|
1. Support covers getting up and help in theme setup
|
||||||
|
2. Help using features and theme options
|
||||||
|
3. Bug fixes – if you discovered a bug in the theme/Template we will fix it
|
||||||
|
4. Functionality which does not work as advertised
|
||||||
6
cerimoniere-website-source/data/es/anagrafica.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
title: "Datos Personales"
|
||||||
|
content: "Dentro de Cerimoniere, es posible personalizar la mayoría de la información disponible. En el menú Datos Personales, se encuentran todas las tablas necesarias para modificar o añadir información relacionada con personas o cargos. Desde aquí, se puede acceder, por ejemplo, a la lista de tipos de teléfonos presentes y modificarlos a gusto."
|
||||||
|
imageleft: "images/anagrafica_dettaglio.png"
|
||||||
|
contentright: "Los datos personales son el elemento central de una oficina ceremonial, ya que representan el archivo principal que contiene todos los datos personales, logísticos y biográficos de cada personalidad que ocupa un cargo político, militar o de otro tipo. La información contenida en el archivo de datos personales no solo está disponible para el personal de la oficina ceremonial, sino que también debe estar a disposición, con las debidas precauciones para proteger la privacidad, de anfitriones, conductores, personal de catering y seguridad involucrados durante la organización y desarrollo de un evento institucional o público."
|
||||||
|
imageright: "images/anagrafica_lista.png"
|
||||||
|
contentleft: "Esta compartición de información permite a los implicados tener todo bajo control y actuar rápidamente en la identificación de un nuevo invitado, un representante o un intruso no deseado. Las fichas de Datos Personales creadas para las finalidades requeridas por el ceremonial se han estructurado dentro del software para permitir el registro preciso de toda la información y detalles necesarios para gestionar las invitaciones, los primeros contactos telefónicos y las posteriores llamadas de confirmación dirigidas a los invitados previamente invitados por la secretaría organizativa."
|
||||||
6
cerimoniere-website-source/data/es/contatti.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
title: "Contactos"
|
||||||
|
subtitle: "Quiénes Somos"
|
||||||
|
content: "Cerimoniere es un software de bit Time Software, una Software House fundada en 2002, con sede central en Roma y dos sucursales en Milán y Dubái. bit Time Software desarrolla y distribuye su propio software, ofrece soluciones informáticas personalizadas a solicitud del cliente, brinda servicios de consultoría y ofrece cursos de formación profesional. bit Time Software es el representante exclusivo en Italia de Embarcadero Technologies, la reconocida empresa estadounidense que produce y distribuye, a nivel mundial, herramientas galardonadas utilizadas por desarrolladores y administradores de bases de datos. La actividad está comprometida con la reventa de licencias y la promoción de los productos de Embarcadero, llegando a gestionar más de 50.000 contactos."
|
||||||
|
subtitle2: "Contactos"
|
||||||
|
content2: "Nuestras oficinas están abiertas de Lun - Vie, de 09:00 a 13:00 y de 14:00 a 18:00."
|
||||||
|
content3: "Para más información, contáctanos al número de teléfono +39 06/20761499 o envíanos un correo electrónico a dir_comm@bittime.it."
|
||||||
39
cerimoniere-website-source/data/es/faq.yml
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
title: "F.A.Q."
|
||||||
|
|
||||||
|
subtitleanagrafiche: "Datos Personales"
|
||||||
|
q1anagrafiche: "¿Puede una persona tener un solo cargo asociado?"
|
||||||
|
a1anagrafiche: "No, cada persona puede tener varios cargos asociados. Esto permite invitar a la misma persona a diferentes ceremonias, y su cargo más alto siempre será considerado al crear las invitaciones."
|
||||||
|
|
||||||
|
subtitleinviti: "Invitaciones"
|
||||||
|
q1inviti: "¿Cómo puedo revisar y gestionar la lista de invitados?"
|
||||||
|
a1inviti: "A través del formulario de invitaciones; es posible ver la lista de acompañantes o cualquier representante."
|
||||||
|
q2inviti: "¿Qué sucede si un invitado tiene un acompañante?"
|
||||||
|
a2inviti: "Cada invitado puede tener uno o más acompañantes. Con la gestión de invitados, se puede seleccionar la opción 'sentado junto a' para forzar al programa a colocar al acompañante al lado del invitado."
|
||||||
|
q3inviti: "¿Un invitado puede ser representado por otra persona?"
|
||||||
|
a3inviti: "Sí, cada invitado puede ser representado por otra persona, que debe ser especificada en el formulario de invitaciones. Por supuesto, el representante utilizará el cargo que se había asignado al invitado original."
|
||||||
|
q4inviti: "¿La dirección de envío está vinculada a la dirección de la persona?"
|
||||||
|
a4inviti: "No, no está vinculada. En algunos casos, es indispensable enviar la invitación a la dirección del cargo (por ejemplo: el Presidente de la República). Todo se gestiona desde el formulario de invitaciones durante la impresión de sobres de invitaciones."
|
||||||
|
q5inviti: "¿Cuánto puedo personalizar mis invitaciones?"
|
||||||
|
a5inviti: "Las invitaciones se crean utilizando una plantilla de Microsoft Word®, lo que las hace completamente personalizables. bit Time ha desarrollado un sistema de códigos de sustitución que permite a los usuarios insertar datos del software en la invitación con gran flexibilidad y facilidad."
|
||||||
|
|
||||||
|
subtitleposti: "Asignación de Asientos"
|
||||||
|
q1posti: "¿Cómo se asignan los asientos?"
|
||||||
|
a1posti: "Primero, debe asignarse el asiento 1 (el asiento de honor). Luego, la regla general para asignar asientos al lado del asiento de honor establece que el asiento más importante es el que está a su derecha. Por lo tanto, entre tres asientos, el asiento de honor está en el centro, el segundo está a la derecha del invitado y el tercero a la izquierda, y así sucesivamente. Si los asientos son pares o de igual importancia, se disponen de manera que no haya un solo asiento central, sino que se cree un doble centro, formando una especie de doble presidencia. Entonces, en una ceremonia institucional con una fila impar de asientos en la primera fila, el primer asiento estará en el centro, y los demás seguirán un patrón de derecha/izquierda, mientras que en el caso de un 'doble centro', el primer asiento será el centro derecho, y los demás seguirán un patrón izquierda/derecha."
|
||||||
|
q2posti: "¿Es posible asignar a un invitado un asiento diferente al que le correspondería?"
|
||||||
|
a2posti: "Sí, cada invitado puede ser movido o intercambiado con otros en cualquier asiento dentro de la sala."
|
||||||
|
q3posti: "¿Se pueden numerar los asientos?"
|
||||||
|
a3posti: "Sí, una vez que el usuario define el asiento 'A1', Cerimoniere asignará todos los asientos impares a la derecha (A3-A5…F7) y todos los asientos pares a la izquierda (A2-A4…F8)."
|
||||||
|
q4posti: "¿Se imprimen las tarjetas de asiento?"
|
||||||
|
a4posti: "Sí, una vez que se asigna la fila y el número de asiento, se pueden imprimir las tarjetas."
|
||||||
|
|
||||||
|
subtitlegeneral: "Preguntas Generales"
|
||||||
|
q1general: "¿Cuántas ceremonias se pueden gestionar?"
|
||||||
|
a1general: "Es posible gestionar múltiples ceremonias simultáneamente, asociando a cada una de ellas a invitados que estén presentes en los registros de datos personales."
|
||||||
|
q2general: "¿Se mantiene un historial de ceremonias pasadas?"
|
||||||
|
a2general: "Todas las ceremonias introducidas se mantienen como historial. Cada una conserva toda la información ingresada previamente. Por lo tanto, es posible rastrear quién fue invitado, quién aceptó, y el cargo que un invitado específico tenía en esa ceremonia. También es posible revisar la distribución de asientos creada para cada ceremonia."
|
||||||
|
q3general: "¿Existen limitaciones para algunos usuarios?"
|
||||||
|
a3general: "Los usuarios pueden tener permisos de solo lectura, lectura y escritura, o ningún permiso en los dos módulos del programa: Palco y Secretaría. Un usuario puede tener habilitada cualquier combinación de estas propiedades y permisos."
|
||||||
|
|
||||||
|
subtitletech: "Preguntas Técnicas"
|
||||||
|
q1tech: "¿Qué base de datos se utiliza?"
|
||||||
|
a1tech: "Cerimoniere es un software propietario que utiliza la base de datos open-source Firebird 2.0.1; por lo tanto, no se requiere el pago de licencia de uso de la base de datos."
|
||||||
64
cerimoniere-website-source/data/es/homepage.yml
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
############################# banner ############################
|
||||||
|
banner:
|
||||||
|
enable : true
|
||||||
|
title : "Cerimoniere Web"
|
||||||
|
content : "Cerimoniere es un software para la gestión de grandes eventos, desde la creación de invitaciones hasta la asignación de asientos en una sala, un escenario, una sala de reuniones o un comedor. Permite controlar y gestionar la disposición de los asientos (por ejemplo, un escenario) en función del cargo del invitado."
|
||||||
|
content2 : "Con un simple clic, dada una lista de invitados, el programa dispone a todos los participantes en una audiencia, respetando las reglas de precedencia establecidas por el protocolo seleccionado. Después de la asignación inicial, es posible modificar la posición de cada invitado según sus necesidades."
|
||||||
|
image : "images/cerimoniere_logo.png"
|
||||||
|
buttons:
|
||||||
|
- enable : true
|
||||||
|
label : "Descargar el Folleto"
|
||||||
|
link : "/pdf/brochure_cerimoniere_web.pdf"
|
||||||
|
- enable : true
|
||||||
|
label : "Ver los Videos Tutoriales"
|
||||||
|
link : "https://www.youtube.com/playlist?list=PLqELe5jUzuhbq-OtDCZU_KzfykjTMdZ0R"
|
||||||
|
|
||||||
|
############################# Feature ############################
|
||||||
|
features:
|
||||||
|
enable : true
|
||||||
|
title : "Qué Hace Único a Cerimoniere"
|
||||||
|
image : "images/Cerimoniere-Web.png"
|
||||||
|
|
||||||
|
# feature at the left of the image
|
||||||
|
left_side:
|
||||||
|
- title : "Optimización de Tiempo y Recursos"
|
||||||
|
icon : "tf-ion-ios-alarm-outline"
|
||||||
|
content : "Una ceremonia compleja con muchos invitados puede ser gestionada por una sola persona. Gracias a la asignación automática de asientos, basta con un clic para colocar a cada invitado en su lugar."
|
||||||
|
|
||||||
|
- title : "Adaptabilidad a Cambios de Último Momento"
|
||||||
|
icon : "tf-ion-android-car"
|
||||||
|
content : "El software permite añadir nuevas personas en la sala, la audiencia o la mesa, incluso en el último momento. El programa reorganiza automáticamente la disposición de los asientos respetando el rango, los cargos y grados asociados a cada asistente. Por lo tanto, no es necesario volver a organizar toda la asignación de asientos en el escenario."
|
||||||
|
|
||||||
|
- title : "Colocación en Mesas"
|
||||||
|
icon : "tf-ion-android-bar"
|
||||||
|
content : "Ya sea que organices una sala de reuniones o una boda, Cerimoniere te ayudará con su famosa colocación automática basada en el protocolo."
|
||||||
|
|
||||||
|
# feature at the right of the image
|
||||||
|
right_side:
|
||||||
|
- title : "Datos Personales e Historial de Ceremonias"
|
||||||
|
icon : "tf-ion-ios-contact"
|
||||||
|
content : "Cerimoniere permite mantener actualizados los datos personales y los cargos de las personas, por separado. Crear nuevos eventos es más fácil gracias a la posibilidad de clonar una ceremonia pasada para organizar una futura."
|
||||||
|
|
||||||
|
- title : "Optimización del Flujo de Información y Datos"
|
||||||
|
icon : "tf-ion-ios-cog"
|
||||||
|
content : "Con un estándar común, las distintas oficinas del ceremonial podrán intercambiar datos e información de manera efectiva y eficiente, sin pérdidas de tiempo innecesarias."
|
||||||
|
|
||||||
|
- title : "App para Check-In"
|
||||||
|
icon : "tf-mobile"
|
||||||
|
content : "Con la app móvil para el Check-In, cada asistente de bienvenida sabrá quién debe sentarse dónde. Además, siempre tendrás bajo control la asistencia a la ceremonia. También se admiten invitaciones con códigos QR."
|
||||||
|
buttons:
|
||||||
|
- enable : false
|
||||||
|
label : "Descargar el Folleto"
|
||||||
|
link : "/pdf/brochure_cerimoniere_web.pdf"
|
||||||
|
- enable : true
|
||||||
|
label : "Ver los Videos Tutoriales"
|
||||||
|
link : "https://www.youtube.com/playlist?list=PLqELe5jUzuhbq-OtDCZU_KzfykjTMdZ0R"
|
||||||
|
|
||||||
|
############################# promo ############################
|
||||||
|
promo:
|
||||||
|
enable : true
|
||||||
|
image : "images/eventi.png"
|
||||||
|
title : "Otras Características"
|
||||||
|
content : "El programa incluye una sección para crear invitaciones que serán enviadas a los diferentes invitados. Las invitaciones se pueden crear según las necesidades (tarjetas, saludos preimpresos, saludos escritos a mano, etc.) en función de la importancia de cada personalidad."
|
||||||
|
content2: "Cerimoniere también facilita los cambios de última hora, como la adición de un acompañante no esperado u otros criterios de disposición que surgen tarde. Resuelve así las causas más frecuentes de quejas relacionadas con la disposición de los asientos."
|
||||||
|
content3: "Actualmente no existe un estándar para la gestión de ceremonias en las oficinas de ceremonial. Cada oficina ha encontrado metodologías y herramientas diferentes, y la disposición de asientos en una audiencia, por ejemplo, se gestiona manualmente. Esto da lugar a una pérdida de tiempo, recursos, trazabilidad de ceremonias pasadas"
|
||||||
16
cerimoniere-website-source/data/es/palco.yml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
title : "Audiencia"
|
||||||
|
content : "La disposición de los invitados en la audiencia es la piedra angular de cualquier ceremonia. Toda la organización podría verse comprometida por un simple error de colocación de un invitado en comparación con otro."
|
||||||
|
subcontent: "Para la colocación en la audiencia, Cerimoniere sigue las reglas de derecha-izquierda"
|
||||||
|
imgplatea1: "images/platea_centro.png"
|
||||||
|
contentfraplatea: "o izquierda-derecha en caso de 'doble centro'."
|
||||||
|
imgplatea2: "6 4 2 1 3 5"
|
||||||
|
content2: "Cerimoniere interviene precisamente en esta fase, facilitando la disposición de los invitados en la audiencia y, sobre todo, haciendo simple y rápida la inclusión de 'invitados de última hora', es decir, aquellos que confirman en el último momento o, peor aún, comunican la presencia de un acompañante a pocas horas de la ceremonia."
|
||||||
|
imageleft: "images/palco1.png"
|
||||||
|
contentright: "En una situación así, gracias a Cerimoniere, es posible crear un asiento libre en una audiencia ya llena e incluir al nuevo invitado allí, todo con un simple clic. En este caso, incluso los cambios de última hora podrán gestionarse sin demasiado estrés. También es posible 'bloquear' a los invitados en sus asientos, de manera que, incluso en caso de reubicaciones por nuevos invitados, estos permanecerán en su posición asignada."
|
||||||
|
imageright: "images/stage_2.png"
|
||||||
|
contentleft: "Cerimoniere permite la impresión de:"
|
||||||
|
contentleftlist: "<ul class='customul'><li><strong class='text-primary-color'>Audiencia completa:</strong> creación de una hoja de excel idéntica a la pantalla de Cerimoniere</li>
|
||||||
|
<li><strong class='text-primary-color'>Directorio:</strong> ordenado por asientos o en orden alfabético de los invitados. Contiene toda la información del invitado, útil para las azafatas, como: nombre, apellido, foto, cargo y, en su caso, el nombre de la persona a quien representan.</li>
|
||||||
|
<li><strong class='text-primary-color'>Etiquetas:</strong> en varios formatos</li>
|
||||||
|
<li><strong class='text-primary-color'>Caballete de mesa</strong></li></ul>"
|
||||||
|
contentlast: "También es de considerable importancia el hecho de que cada ceremonia se guarda dentro del programa. Se podrá acceder en cualquier momento para verificar la posición asignada en la audiencia de un invitado en particular."
|
||||||
17
cerimoniere-website-source/data/es/protocolli.yml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
title : "Protocolos"
|
||||||
|
content : "El protocolo es el núcleo de Cerimoniere. Gracias a esta característica, se pueden gestionar varios tipos de ceremonias utilizando la misma base de datos de información personal. El protocolo establece todas las reglas de precedencia que la ceremonia debe seguir. Es posible asignar un protocolo diferente a cada ceremonia. Cerimoniere incluye dos 'protocolos oficiales', creados según las directrices del decreto Sgrelli."
|
||||||
|
contentlist: "Estos son:
|
||||||
|
<ul class='customul'><li>Protocolo Nacional (incluye todos los cargos nacionales, desde el Presidente de la República hasta los Generales de Brigada)</li>
|
||||||
|
<li>Protocolo Territorial (incluye todos los cargos territoriales, desde los Presidentes de las Juntas Regionales hasta los Coroneles)</li></ul>"
|
||||||
|
imageleft: "images/protocolli1.png"
|
||||||
|
content2: "Además, se pueden añadir protocolos personalizados para incluir cargos o funciones no mencionadas, o solo mencionadas parcialmente, en el decreto Sgrelli, siguiendo las directrices específicas de la oficina que utilice Cerimoniere."
|
||||||
|
contentright: "Dentro del protocolo, se pueden establecer diferentes reglas de ordenamiento, como por ejemplo:"
|
||||||
|
contentrightlist: "<ul class='customul'><li>Orden por categoría (Presidente de la República, Primera categoría, Segunda categoría…)</li>
|
||||||
|
<li>Orden por subcategoría (A1, A2, A3…)</li>
|
||||||
|
<li>Orden por cargo/posición dentro de la categoría o subcategoría</li>
|
||||||
|
<li>Presidente del Senado de la República</li>
|
||||||
|
<li>Presidente de la Cámara de Diputados</li>
|
||||||
|
<li>Grupo de Rangos, en el que solo hay rangos militares y no cargos/posiciones. Se seguirá el orden de rangos (General…Coroneles)</li>
|
||||||
|
<li>Grupo de Cargos, ordenado por rango (por ejemplo, las personas que ocupen el mismo cargo se organizarán según su rango)</li></ul>"
|
||||||
|
imageright: "images/protocolli2.png"
|
||||||
|
contentleft: "En los casos en que varias personas se encuentren bajo los mismos criterios de ordenamiento, el protocolo recurre a las reglas de ordenamiento 'básicas', como la antigüedad y, finalmente, el orden alfabético. Gracias a este sistema flexible, se pueden gestionar todos los escenarios complejos que caracterizan cada ceremonia. Para cada ceremonia, Cerimoniere preguntará qué protocolo de referencia se desea utilizar. Esto podría resultar en un ordenamiento diferente de los invitados, pero todo se puede modificar incluso después de la configuración inicial."
|
||||||
11
cerimoniere-website-source/i18n/es.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
- id: "add_to_cart"
|
||||||
|
translation: "Agregar al Carrito"
|
||||||
|
|
||||||
|
- id: "send"
|
||||||
|
translation: "Enviar Ahora"
|
||||||
|
|
||||||
|
- id: "subscribe"
|
||||||
|
translation: "Suscribirse"
|
||||||
|
|
||||||
|
- id: "read_more"
|
||||||
|
translation: "Leer Más"
|
||||||
33
cerimoniere-website-source/layouts/anagrafica/list.html
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||||
|
{{- with $data.anagrafica }}
|
||||||
|
<section class="section gallery">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 text-center mb-5">
|
||||||
|
<h1 class="font-weight-bold">{{.title}}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 mb-4 md-0">
|
||||||
|
<p class="mb-4">{{ .content | markdownify }}</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 text-center mb-4 md-0">
|
||||||
|
<a href="{{ .imageleft | absURL }}" target="_blank">
|
||||||
|
<img class="img-fluid" src="{{ .imageleft | absURL }}" alt="anagrafica dettaglio">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 mb-5 mb-md-0">
|
||||||
|
<p class="mb-4">{{ .contentright | markdownify}}</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 mb-5 mt-4 mb-md-0">
|
||||||
|
<p class="mb-1">{{ .contentleft | markdownify}}</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 text-center mt-4 mb-5 mb-md-0">
|
||||||
|
<a href="{{ .imageright | absURL }}" target="_blank">
|
||||||
|
<img class="img-fluid" src="{{ .imageright | absURL }}" alt="anagrafica lista">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{{- end }}
|
||||||
|
{{ end }}
|
||||||
27
cerimoniere-website-source/layouts/contact/list.html
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||||
|
{{- with $data.contatti }}
|
||||||
|
<section class="section gallery">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 text-center mb-5">
|
||||||
|
<h1 class="font-weight-bold">{{.title}}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 mb-5">
|
||||||
|
<h3 class="font-weight-bold text-primary-color">{{.subtitle}}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 mb-5 mb-md-0">
|
||||||
|
<p class="mb-4">{{ .content | markdownify }}</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 mb-5">
|
||||||
|
<h3 class="font-weight-bold text-primary-color">{{.subtitle2}}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 mb-5 mb-md-0">
|
||||||
|
<p class="mb-4">{{ .content2 | markdownify }}</p>
|
||||||
|
<p class="mb-4">{{ .content3 | markdownify }}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{{- end }}
|
||||||
|
{{ end }}
|
||||||
80
cerimoniere-website-source/layouts/faq/list.html
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||||
|
{{- with $data.faq }}
|
||||||
|
<section class="section gallery">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 text-center mb-5">
|
||||||
|
<h1 class="font-weight-bold">{{.title}}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 mb-5 mb-md-0">
|
||||||
|
<h3 class="font-weight-bold text-center">{{.subtitleanagrafiche}}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 mt-3 mb-md-0">
|
||||||
|
<h4 class="text-primary-color">{{.q1anagrafiche}}</h5>
|
||||||
|
<p>{{.a1anagrafiche}}</p>
|
||||||
|
<hr/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Seconda -->
|
||||||
|
<div class="col-md-12 mb-5 mb-md-0">
|
||||||
|
<h3 class="font-weight-bold text-center">{{.subtitleinviti}}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 mt-3 mb-md-0">
|
||||||
|
<h4 class="text-primary-color">{{.q1inviti}}</h5>
|
||||||
|
<p>{{.a1inviti}}</p>
|
||||||
|
<h4 class="text-primary-color">{{.q2inviti}}</h5>
|
||||||
|
<p>{{.a2inviti}}</p>
|
||||||
|
<h4 class="text-primary-color">{{.q3inviti}}</h5>
|
||||||
|
<p>{{.a3inviti}}</p>
|
||||||
|
<h4 class="text-primary-color">{{.q4inviti}}</h5>
|
||||||
|
<p>{{.a4inviti}}</p>
|
||||||
|
<h4 class="text-primary-color">{{.q5inviti}}</h5>
|
||||||
|
<p>{{.a5inviti}}</p>
|
||||||
|
<hr/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Terza -->
|
||||||
|
<div class="col-md-12 mb-5 mb-md-0">
|
||||||
|
<h3 class="font-weight-bold text-center">{{.subtitleposti}}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 mt-3 mb-md-0">
|
||||||
|
<h4 class="text-primary-color">{{.q1posti}}</h5>
|
||||||
|
<p>{{.a1posti}}</p>
|
||||||
|
<h4 class="text-primary-color">{{.q2posti}}</h5>
|
||||||
|
<p>{{.a2posti}}</p>
|
||||||
|
<h4 class="text-primary-color">{{.q3posti}}</h5>
|
||||||
|
<p>{{.a3posti}}</p>
|
||||||
|
<h4 class="text-primary-color">{{.q4posti}}</h5>
|
||||||
|
<p>{{.a4posti}}</p>
|
||||||
|
<hr/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Quarta -->
|
||||||
|
<div class="col-md-12 mb-5 mb-md-0">
|
||||||
|
<h3 class="font-weight-bold text-center">{{.subtitlegeneral}}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 mt-3 mb-md-0">
|
||||||
|
<h4 class="text-primary-color">{{.q1general}}</h5>
|
||||||
|
<p>{{.a1general}}</p>
|
||||||
|
<h4 class="text-primary-color">{{.q2general}}</h5>
|
||||||
|
<p>{{.a2general}}</p>
|
||||||
|
<h4 class="text-primary-color">{{.q3general}}</h5>
|
||||||
|
<p>{{.a3general}}</p>
|
||||||
|
<!-- <hr/> -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Quarta -->
|
||||||
|
<!-- <div class="col-md-12 mb-5 mb-md-0">
|
||||||
|
<h3 class="font-weight-bold text-center">{{.subtitletech}}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 mt-3 mb-md-0">
|
||||||
|
<h4 class="text-primary-color">{{.q1tech}}</h5>
|
||||||
|
<p>{{.a1tech}}</p>
|
||||||
|
</div> -->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{{- end }}
|
||||||
|
{{ end }}
|
||||||
17
cerimoniere-website-source/layouts/index.html
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
|
||||||
|
{{- partial "banner.html" . }}
|
||||||
|
|
||||||
|
{{- partial "features.html" . }}
|
||||||
|
|
||||||
|
{{- partial "promo.html" . }}
|
||||||
|
|
||||||
|
<!-- {{- partial "about-product.html" . }} -->
|
||||||
|
|
||||||
|
<!-- {{- partial "products.html" . }} -->
|
||||||
|
|
||||||
|
<!-- {{- partial "subscription.html" . }} -->
|
||||||
|
|
||||||
|
<!-- {{- partial "testimonials.html" . }} -->
|
||||||
|
|
||||||
|
{{ end }}
|
||||||
100
cerimoniere-website-source/layouts/palco/list.html
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||||
|
{{- with $data.palco }}
|
||||||
|
<style>
|
||||||
|
.stage_right_left .active {
|
||||||
|
color: #00ada7;
|
||||||
|
}
|
||||||
|
.stage_right_left ul li {
|
||||||
|
width: 15%;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 0;
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
|
.stage_right_left {
|
||||||
|
width: 90%;
|
||||||
|
background-color: #22577a;
|
||||||
|
height: 40px;
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
.stage_double_center {
|
||||||
|
width: 90%;
|
||||||
|
background-color: #476c5e;
|
||||||
|
height: 40px;
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
.stage_double_center ul li {
|
||||||
|
width: 12.5%;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 0;
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
|
.stage_double_center .active {
|
||||||
|
color: #083643;
|
||||||
|
}
|
||||||
|
.customul {
|
||||||
|
list-style: inside;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<section class="section gallery">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 text-center mb-5">
|
||||||
|
<h1 class="font-weight-bold">{{.title}}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 mb-5 mb-md-0">
|
||||||
|
<p class="mb-4">{{ .content | markdownify }}</p>
|
||||||
|
<p class="mb-4">{{ .subcontent | markdownify }}</p>
|
||||||
|
<div class="stage_right_left mb-4 text-center" style="margin:auto">
|
||||||
|
<ul class="list-inline">
|
||||||
|
<li class="list-inline-item">5</li>
|
||||||
|
<li class="list-inline-item">3</li>
|
||||||
|
<li class="active list-inline-item">1</li>
|
||||||
|
<li class="list-inline-item">2</li>
|
||||||
|
<li class="list-inline-item">4</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<p class="mb-4">{{ .contentfraplatea | markdownify }}</p>
|
||||||
|
<div class="stage_double_center mb-4 text-center" style="margin:auto">
|
||||||
|
<ul class="inline">
|
||||||
|
<li class="list-inline-item">6</li>
|
||||||
|
<li class="list-inline-item">4</li>
|
||||||
|
<li class="list-inline-item">2</li>
|
||||||
|
<li class="active list-inline-item">1</li>
|
||||||
|
<li class="list-inline-item">3</li>
|
||||||
|
<li class="list-inline-item">5</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<p class="mb-4">{{ .content2 | markdownify }}</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 text-center mb-5 mb-md-0">
|
||||||
|
<a href="{{ .imageleft | absURL }}" target="_blank">
|
||||||
|
<img class="img-fluid" src="{{ .imageleft | absURL }}" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 mb-5 mb-md-0">
|
||||||
|
<p class="mt-4">{{ .contentright | markdownify}}</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 mb-5 mb-md-0">
|
||||||
|
<p class="mt-4">{{ .contentleft | markdownify}}</p>
|
||||||
|
<p class="mt-4">{{ .contentleftlist | safeHTML}}</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 text-center align-self-center mb-5 mb-md-0">
|
||||||
|
<a href="{{ .imageright | absURL }}" target="_blank">
|
||||||
|
<img class="img-fluid" src="{{ .imageright | absURL }}" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-12">
|
||||||
|
<p class="mt-4">{{ .contentlast | markdownify}}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{{- end }}
|
||||||
|
{{ end }}
|
||||||
43
cerimoniere-website-source/layouts/palco/single.html
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
|
||||||
|
<section class="section">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-5 mb-4 mb-md-0">
|
||||||
|
<!-- product image slider -->
|
||||||
|
<div class="product-image-slider">
|
||||||
|
{{ range .Params.images }}
|
||||||
|
<div data-image="{{ . | absURL }}">
|
||||||
|
<img class="img-fluid w-100" src="{{ . | absURL }}" alt="product-image">
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-md-7 offset-lg-1">
|
||||||
|
<h1 class="mb-4">{{ .Title }}</h1>
|
||||||
|
<p><strong>Colors:</strong> {{ with .Params.colors }}{{ delimit . ", "}}{{ end }}</p>
|
||||||
|
<p><strong>Sizes:</strong> {{ with .Params.sizes }}{{ delimit . ", "}}{{ end }}</p>
|
||||||
|
<p class="price py-4">{{if .Params.discount_price}}{{site.Params.currency}}{{.Params.discount_price}}{{else}}{{site.Params.currency}}{{.Params.price}}{{end}}
|
||||||
|
{{if .Params.discount_price}}<s class="price">{{site.Params.currency}}{{ .Params.price }}</s>{{end}}
|
||||||
|
</p>
|
||||||
|
<button class="snipcart-add-item btn btn-main mb-5"
|
||||||
|
data-item-id="{{.Title | urlize}}__{{if .Params.discount_price}}{{.Params.discount_price}}{{else}}{{.Params.price}}{{end}}"
|
||||||
|
data-item-name="{{.Title}}"
|
||||||
|
data-item-image="{{range first 1 .Params.Images}}{{. | absURL}}{{end}}"
|
||||||
|
data-item-price="{{if .Params.discount_price}}{{.Params.discount_price}}{{else}}{{.Params.price}}{{end}}" data-item-url="{{.Permalink}}"
|
||||||
|
{{ if .Params.colors }}
|
||||||
|
data-item-custom1-name="Choose Color"
|
||||||
|
data-item-custom1-options="{{range $index, $element:= .Params.colors}}{{ if eq $index 0 }}{{. | title}}{{ else }}|{{. | title }}{{end}}{{end}}"
|
||||||
|
{{ end }}
|
||||||
|
{{ if .Params.sizes }}
|
||||||
|
data-item-custom2-name="Choose Size"
|
||||||
|
data-item-custom2-options="{{range $index, $element:= .Params.sizes}}{{if eq $index 0}}{{. | title}}{{else}}|{{. | title}}{{end}}{{end}}"
|
||||||
|
{{end}}>{{i18n "add_to_cart"}}
|
||||||
|
</button>
|
||||||
|
<div class="content">{{.Content}}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{{ end }}
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||||
|
|
||||||
|
{{ if $data.homepage.about_product.enable }}
|
||||||
|
{{ with $data.homepage.about_product }}
|
||||||
|
<section class="feature-list section">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<div class="heading">
|
||||||
|
<h2>{{ .title | markdownify }}</h2>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{ range $index, $element := .items }}
|
||||||
|
{{- if ne (mod $index 2) 1 }}
|
||||||
|
<div class="row mb-40">
|
||||||
|
<div class="col-md-6 text-center mb-5 mb-lg-0">
|
||||||
|
<img class="img-fluid" src="{{ .image | absURL }}" alt="">
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 align-self-center text-center text-md-left">
|
||||||
|
<div class="content">
|
||||||
|
<h4 class="subheading">{{ .title | markdownify }}</h4>
|
||||||
|
<p>{{ .content | markdownify }}</p>
|
||||||
|
{{ if .button.enable }}
|
||||||
|
{{ with .button }}
|
||||||
|
<a href="{{ .link | absURL }}" class="btn btn-main btn-main-sm">{{ .label }}</a>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{- else }}
|
||||||
|
<div class="row mb-40">
|
||||||
|
<div class="col-md-6 order-md-1 order-2 align-self-center text-center text-md-left">
|
||||||
|
<div class="content">
|
||||||
|
<h4 class="subheading">{{ .title | markdownify }}</h4>
|
||||||
|
<p>{{ .content | markdownify }}</p>
|
||||||
|
{{ if .button.enable }}
|
||||||
|
{{ with .button }}
|
||||||
|
<a href="{{ .link | absURL }}" class="btn btn-main btn-main-sm">{{ .label }}</a>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 order-md-2 order-1 text-center mb-5 mb-lg-0">
|
||||||
|
<img class="img-fluid" src="{{ .image | absURL }}" alt="">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
29
cerimoniere-website-source/layouts/partials/banner.html
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||||
|
|
||||||
|
{{- if $data.homepage.banner.enable }}
|
||||||
|
{{- with $data.homepage.banner }}
|
||||||
|
<!-- hero area -->
|
||||||
|
<!-- <section class="section"> -->
|
||||||
|
<div class="container mt-5">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6 align-self-center text-center mb-5 mb-md-0">
|
||||||
|
<img class="img-fluid" src="{{ .image | absURL }}" alt="main_logo" width="45%">
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 align-self-center text-center text-md-left">
|
||||||
|
<div class="block">
|
||||||
|
<h1 class="font-weight-bold mb-3 font-size-60 text-primary-color">{{ .title | markdownify }}</h1>
|
||||||
|
<p class="mb-1">{{ .content | markdownify }}</p>
|
||||||
|
<br />
|
||||||
|
<p class="mb-1">{{ .content2 | markdownify }}</p>
|
||||||
|
{{ range .buttons }}
|
||||||
|
{{ if .enable }}
|
||||||
|
<a href="{{ .link | absLangURL }}" class="btn btn-main mt-3">{{ .label }}</a>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><!-- .row close -->
|
||||||
|
</div><!-- .container close -->
|
||||||
|
<!-- </section> --><!-- header close -->
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
51
cerimoniere-website-source/layouts/partials/features.html
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||||
|
|
||||||
|
{{- if $data.homepage.features.enable }}
|
||||||
|
{{- with $data.homepage.features }}
|
||||||
|
<section class="section" id="feature">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12">
|
||||||
|
<div class="heading">
|
||||||
|
<h2>{{ .title | markdownify }}</h2>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
{{ range .left_side }}
|
||||||
|
<div class="mb-40 text-center text-md-left">
|
||||||
|
<h4 class="font-weight-bold mb-2">
|
||||||
|
<i class="d-inlin-block h2 mb-10 mr-1 {{ .icon }}"></i>
|
||||||
|
{{ .title | markdownify }}
|
||||||
|
</h4>
|
||||||
|
<p>{{ .content | markdownify }}</p>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4 text-center align-self-center mb-4 mb-md-0">
|
||||||
|
<img class="img-fluid" src="{{ .image | absURL }}" alt="">
|
||||||
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
{{ range .right_side }}
|
||||||
|
<div class="mb-40 text-center text-md-left">
|
||||||
|
<h4 class="font-weight-bold mb-2">
|
||||||
|
<i class="d-inlin-block h2 mb-10 mr-1 {{ .icon }}"></i>
|
||||||
|
{{ .title | markdownify }}
|
||||||
|
</h4>
|
||||||
|
<p>{{ .content | markdownify }}</p>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
<div class="col-12 align-self-center text-center">
|
||||||
|
<div class="block">
|
||||||
|
{{ range .buttons }}
|
||||||
|
{{ if .enable }}
|
||||||
|
<a href="{{ .link | absLangURL }}" class="btn btn-main mt-3">{{ .label }}</a>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><!-- .container close -->
|
||||||
|
</section>
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
36
cerimoniere-website-source/layouts/partials/footer.html
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
<footer>
|
||||||
|
<div class="container text-center">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<div class="block">
|
||||||
|
<a href="{{ site.BaseURL | relLangURL }}" class="mb-4 d-inline-block">{{ if site.Params.logo }} <img src="{{ site.Params.logo | absURL }}" alt="{{ site.Title }}" {{with site.Params.logo_width}}width="{{.}}"{{end}}> {{ else }} {{ .Title }} {{ end }}</a>
|
||||||
|
<ul class="list-inline footer-menu">
|
||||||
|
{{ range site.Menus.footer }}
|
||||||
|
<li class="list-inline-item">
|
||||||
|
<a href="{{ .URL | absLangURL }}">{{ .Name }}</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
<li class="list-inline-item">
|
||||||
|
<a href="https://www.bittimeprofessionals.it" target="_blank">bit Time Professionals s.r.l.</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p class="copyright-text">{{ site.Params.copyright | markdownify }}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Snipcart public key -->
|
||||||
|
{{with site.Params.snipcart_api}}
|
||||||
|
<div hidden id="snipcart" data-api-key="{{.}}"></div>{{end}}
|
||||||
|
|
||||||
|
<!-- JS Plugins -->
|
||||||
|
{{ range site.Params.plugins.js}}
|
||||||
|
<script src="{{ .link | absURL }}"></script>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<!-- Main Script -->
|
||||||
|
{{ $script := resources.Get "js/script.js" }}
|
||||||
|
<script src="{{ $script.Permalink }}"></script>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<!-- Google tag (gtag.js) -->
|
||||||
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-297TKD4RF0"></script>
|
||||||
|
<script>
|
||||||
|
window.dataLayer = window.dataLayer || [];
|
||||||
|
function gtag(){dataLayer.push(arguments);}
|
||||||
|
gtag('js', new Date());
|
||||||
|
|
||||||
|
gtag('config', 'G-297TKD4RF0');
|
||||||
|
</script>
|
||||||
32
cerimoniere-website-source/layouts/partials/head.html
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>{{ .Title }}</title>
|
||||||
|
|
||||||
|
{{ "<!-- mobile responsive meta -->" | safeHTML }}
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||||
|
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ with site.Params.description }}{{ . }}{{ end }}{{ end }}">
|
||||||
|
{{ with site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
|
||||||
|
{{ hugo.Generator }}
|
||||||
|
|
||||||
|
{{ "<!-- plugins -->" | safeHTML }}
|
||||||
|
{{ range site.Params.plugins.css }}
|
||||||
|
<link rel="stylesheet" href="{{ .link | absURL }} ">
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ "<!-- Main Stylesheet -->" | safeHTML }}
|
||||||
|
{{ $styles := resources.Get "scss/style.scss" | toCSS | minify }}
|
||||||
|
<link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
|
||||||
|
|
||||||
|
{{ "<!--Favicon-->" | safeHTML }}
|
||||||
|
<link rel="shortcut icon" href="{{ `images/favicon.png` | absURL }} " type="image/x-icon">
|
||||||
|
<link rel="icon" href="{{ `images/favicon.png` | absURL }} " type="image/x-icon">
|
||||||
|
|
||||||
|
{{ with .Params.image }}
|
||||||
|
<meta property="og:image" content="{{ . | absURL }}" />
|
||||||
|
{{ end }}
|
||||||
|
{{ template "_internal/opengraph.html" . }}
|
||||||
|
{{ template "partials/google_analytics.html" . }}
|
||||||
|
<!-- {{ template "_internal/google_analytics.html" . }}
|
||||||
|
{{ template "_internal/google_analytics_async.html" . }} -->
|
||||||
|
|
||||||
|
</head>
|
||||||
45
cerimoniere-website-source/layouts/partials/header.html
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
<!-- navigation -->
|
||||||
|
<header class="sticky-top bg-white">
|
||||||
|
<div class="container">
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-light">
|
||||||
|
<a class="navbar-brand" href="{{ site.BaseURL }}">{{ if site.Params.logo }} <img src="{{ site.Params.logo | absURL }}" alt="{{ site.Title }}" {{with site.Params.logo_width}}width="{{.}}"{{end}}> {{ else }} {{ site.Title }} {{ end }}</a>
|
||||||
|
<button class="navbar-toggler border-0" type="button" data-toggle="collapse" data-target="#navigation"
|
||||||
|
aria-controls="navigation" aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse text-center" id="navigation">
|
||||||
|
<ul class="navbar-nav ml-auto">
|
||||||
|
{{ range site.Menus.main }}
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="{{ .URL | absLangURL }}">{{ .Name }}</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
<!-- Language List -->
|
||||||
|
{{ if .IsTranslated }}
|
||||||
|
<select class="lang-list" id="select-language" onchange="location = this.value;">
|
||||||
|
{{ $siteLanguages := .Site.Languages}}
|
||||||
|
{{ $pageLang := .Page.Lang}}
|
||||||
|
{{ range .Page.AllTranslations }}
|
||||||
|
{{ $translation := .}}
|
||||||
|
{{ range $siteLanguages }}
|
||||||
|
{{ if eq $translation.Lang .Lang }}
|
||||||
|
{{ $selected := false }}
|
||||||
|
{{ if eq $pageLang .Lang}}
|
||||||
|
<option id="{{ $translation.Language }}" value="{{ $translation.Permalink }}" selected>{{ .LanguageName }}
|
||||||
|
</option>
|
||||||
|
{{ else }}
|
||||||
|
<option id="{{ $translation.Language }}" value="{{ $translation.Permalink }}">{{ .LanguageName }}</option>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</select>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
<!-- <button class="cart snipcart-checkout"><i class="tf-ion-android-cart"></i><span class="badge badge-primary snipcart-items-count"></span></button> -->
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<!-- /navigation -->
|
||||||
28
cerimoniere-website-source/layouts/partials/palco.html
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||||
|
|
||||||
|
{{ if $data.homepage.products.enable }}
|
||||||
|
<section class="gallery" id="products">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<div class="heading">
|
||||||
|
<h2>{{ $data.homepage.products.title | markdownify }}</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="product-slider">
|
||||||
|
{{ range (where .Site.RegularPages "Section" "products") }}
|
||||||
|
<div class="block">
|
||||||
|
<div class="gallery-overlay">
|
||||||
|
<a href="{{ .Permalink }}" class="gallery-popup">
|
||||||
|
<i class="tf-ion-android-open"></i>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<img class="img-fluid" src="{{range first 1 .Params.images}}{{.|absURL}}{{end}}" alt="{{.Title}}">
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{{ end }}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
{{ if site.Params.preloader.enable }}
|
||||||
|
{{ "<!-- preloader start -->" | safeHTML }}
|
||||||
|
<div class="preloader">
|
||||||
|
{{ with site.Params.preloader.preloader }}
|
||||||
|
<img src="{{ . | absURL }}" alt="preloader">
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
{{ "<!-- preloader end -->" | safeHTML }}
|
||||||
|
{{ end }}
|
||||||
30
cerimoniere-website-source/layouts/partials/promo.html
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||||
|
|
||||||
|
{{ if $data.homepage.promo.enable }}
|
||||||
|
{{ with $data.homepage.promo }}
|
||||||
|
<section class="bg-orange section">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<h2 class="subheading text-white font-weight-bold mb-10">{{ .title | markdownify }}</h2>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 text-center mb-5 mb-lg-0">
|
||||||
|
<a href="{{ .image | absURL }}" target="_blank">
|
||||||
|
<img class="img-fluid" src="{{ .image | absURL }}" alt="eventi">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 text-center text-md-left">
|
||||||
|
<div class="content">
|
||||||
|
<p class="text-white">{{ .content | markdownify }}</p>
|
||||||
|
<p class="text-white">{{ .content2 | markdownify }}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 align-self-center">
|
||||||
|
<p class="text-white mt-4">{{ .content3 | markdownify }}</p>
|
||||||
|
<p class="text-white">{{ .content4 | markdownify }}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||||
|
|
||||||
|
{{- if $data.homepage.subscription.enable }}
|
||||||
|
{{- with $data.homepage.subscription }}
|
||||||
|
<section class="call-to-action section bg-opacity" style="background-image: url('{{ .bg_image | absURL }}');">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-md-8 text-center mx-auto">
|
||||||
|
<h2 class="subheading text-white">{{ .title | markdownify }}</h2>
|
||||||
|
<p class="text-white">{{ .content | markdownify }}</p>
|
||||||
|
<div class="input-group">
|
||||||
|
<form action="{{ site.Params.mailchimp_form_action }}" method="post" class="w-100" name="mc-embedded-subscribe-form" target="_blank">
|
||||||
|
<input type="email" id="email" class="form-control" name="email" placeholder="{{ .placeholder }}"
|
||||||
|
required>
|
||||||
|
<button class="btn btn-main btn-submit" type="submit" name="subscribe">{{i18n "subscribe"}}</button>
|
||||||
|
<div style="position: absolute; left: -5000px;" aria-hidden="true">
|
||||||
|
<input type="text" name="{{ site.Params.mailchimp_form_name }}" tabindex="-1">
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div><!-- /input-group -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section><!-- #call-to-action close -->
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||||
|
|
||||||
|
{{ if $data.homepage.testimonial.enable }}
|
||||||
|
<section class="testimonials section" id="testimonial">
|
||||||
|
<div class="container">
|
||||||
|
{{ with $data.homepage.testimonial }}
|
||||||
|
<div class="row justify-content-center">
|
||||||
|
<div class="col-12">
|
||||||
|
<div class="heading">
|
||||||
|
<h2>{{ .title | markdownify }}</h2>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{ range .testimonial_item }}
|
||||||
|
<div class="col-lg-4 col-sm-6 mb-5 mb-lg-0 text-center">
|
||||||
|
<div class="testimonial-block">
|
||||||
|
<i class="tf-ion-quote"></i>
|
||||||
|
<p>{{ .content | markdownify }}</p>
|
||||||
|
<div class="author-details">
|
||||||
|
<img src="{{ .image | absURL }}" alt="{{ .name }}">
|
||||||
|
<h4>{{ .name }}</h4>
|
||||||
|
<span>{{ .designation }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{{ end }}
|
||||||
42
cerimoniere-website-source/layouts/protocolli/list.html
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||||
|
{{- with $data.protocolli }}
|
||||||
|
<style>
|
||||||
|
.customul {
|
||||||
|
list-style: inside;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<section class="section gallery">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 text-center mb-5">
|
||||||
|
<h1 class="font-weight-bold">{{.title}}</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-12 mb-5 mb-md-0">
|
||||||
|
<p class="mb-4">{{ .content | markdownify }}</p>
|
||||||
|
<p class="mb-1">{{ .contentlist | safeHTML }}</p>
|
||||||
|
<p class="mt-4 mb-4">{{ .content2 | markdownify}}</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 text-center mb-5 mb-md-0">
|
||||||
|
<a href="{{ .imageleft | absURL }}" target="_blank">
|
||||||
|
<img class="img-fluid" src="{{ .imageleft | absURL }}" alt="dettaglio protocolli">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 mb-5 mb-md-0">
|
||||||
|
<p>{{ .contentright | markdownify}}</p>
|
||||||
|
<p>{{ .contentrightlist | safeHTML}}</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 mb-5 mb-md-0">
|
||||||
|
<p>{{ .contentleft | markdownify}}</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6 text-center mb-5 mb-md-0">
|
||||||
|
<a href="{{ .imageright | absURL }}" target="_blank">
|
||||||
|
<img class="img-fluid" src="{{ .imageright | absURL }}" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{{- end }}
|
||||||
|
{{ end }}
|
||||||
9
cerimoniere-website-source/static/.htaccess
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# Allow serving static files
|
||||||
|
Options +FollowSymLinks
|
||||||
|
RewriteEngine On
|
||||||
|
RewriteBase /maestrodeceremonias/
|
||||||
|
|
||||||
|
# Redirect all traffic to index.html if no file/directory is found
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
|
RewriteRule ^(.*)$ /index.html [L]
|
||||||
BIN
cerimoniere-website-source/static/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
6
cerimoniere-website-source/static/images/.gitmodules
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
[submodule "cerimoniere-website/themes/hugo-scroll"]
|
||||||
|
path = cerimoniere-website/themes/hugo-scroll
|
||||||
|
url = https://github.com/janraasch/hugo-scroll.git
|
||||||
|
[submodule "cerimoniere-website/themes/vex-hugo"]
|
||||||
|
path = cerimoniere-website/themes/vex-hugo
|
||||||
|
url = https://github.com/themefisher/vex-hugo.git
|
||||||
BIN
cerimoniere-website-source/static/images/Cerimoniere-Web.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 65 KiB |
BIN
cerimoniere-website-source/static/images/anagrafica_lista.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
cerimoniere-website-source/static/images/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
cerimoniere-website-source/static/images/avater.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 3.8 MiB |
BIN
cerimoniere-website-source/static/images/call-to-action.jpg
Normal file
|
After Width: | Height: | Size: 707 KiB |
BIN
cerimoniere-website-source/static/images/cerimoniere_logo.png
Normal file
|
After Width: | Height: | Size: 114 KiB |
BIN
cerimoniere-website-source/static/images/cover-image.jpg
Normal file
|
After Width: | Height: | Size: 1.4 MiB |
BIN
cerimoniere-website-source/static/images/eventi.png
Normal file
|
After Width: | Height: | Size: 80 KiB |
BIN
cerimoniere-website-source/static/images/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 383 B |
BIN
cerimoniere-website-source/static/images/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 698 B |
BIN
cerimoniere-website-source/static/images/favicon.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 492 KiB |
BIN
cerimoniere-website-source/static/images/homepage-2.png
Normal file
|
After Width: | Height: | Size: 1.9 MiB |
BIN
cerimoniere-website-source/static/images/homepage.png
Normal file
|
After Width: | Height: | Size: 349 KiB |
BIN
cerimoniere-website-source/static/images/logo.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
BIN
cerimoniere-website-source/static/images/palco1.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
|
After Width: | Height: | Size: 1009 KiB |
BIN
cerimoniere-website-source/static/images/platea_centro.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
cerimoniere-website-source/static/images/protocolli1.png
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
cerimoniere-website-source/static/images/protocolli2.png
Normal file
|
After Width: | Height: | Size: 130 KiB |
|
After Width: | Height: | Size: 1.4 MiB |
BIN
cerimoniere-website-source/static/images/showcase/showcase-1.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
cerimoniere-website-source/static/images/showcase/showcase-2.png
Normal file
|
After Width: | Height: | Size: 146 KiB |
BIN
cerimoniere-website-source/static/images/showcase/showcase-3.png
Normal file
|
After Width: | Height: | Size: 99 KiB |
BIN
cerimoniere-website-source/static/images/showcase/showcase-4.png
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
cerimoniere-website-source/static/images/showcase/showcase-5.png
Normal file
|
After Width: | Height: | Size: 110 KiB |
BIN
cerimoniere-website-source/static/images/showcase/showcase-6.png
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
cerimoniere-website-source/static/images/showcase/showcase-7.png
Normal file
|
After Width: | Height: | Size: 138 KiB |
BIN
cerimoniere-website-source/static/images/showcase/showcase-8.png
Normal file
|
After Width: | Height: | Size: 98 KiB |
BIN
cerimoniere-website-source/static/images/stage_2.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
cerimoniere-website-source/static/images/watch-2.png
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
cerimoniere-website-source/static/images/watch.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 1.6 MiB |
10474
cerimoniere-website-source/static/pdf/brochure_cerimoniere_web.pdf
Normal file
400
public/aplicacionesmoviles.html
Normal file
@@ -0,0 +1,400 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<!-- logo -->
|
||||||
|
<link rel="apple-touch-icon" sizes="57x57" href="img/logo.ico/apple-icon-57x57.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="60x60" href="img/logo.ico/apple-icon-60x60.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="72x72" href="img/logo.ico/apple-icon-72x72.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="76x76" href="img/logo.ico/apple-icon-76x76.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="114x114" href="img/logo.ico/apple-icon-114x114.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="120x120" href="img/logo.ico/apple-icon-120x120.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="144x144" href="img/logo.ico/apple-icon-144x144.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="152x152" href="img/logo.ico/apple-icon-152x152.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="img/logo.ico/apple-icon-180x180.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="192x192" href="img/logo.ico/android-icon-192x192.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="img/logo.ico/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="96x96" href="img/logo.ico/favicon-96x96.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="img/logo.ico/favicon-16x16.png">
|
||||||
|
<link rel="manifest" href="img/logo.ico/manifest.json">
|
||||||
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
|
<meta name="msapplication-TileImage" content="img/logo.ico">
|
||||||
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
<!-- logo fine -->
|
||||||
|
<title>Delphi Studio | Aplicaciones Móviles para Android e iOS</title>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400">
|
||||||
|
<!-- Google web font "Open Sans" -->
|
||||||
|
<link rel="stylesheet" href="font-awesome-4.5.0/css/font-awesome.min.css">
|
||||||
|
<!-- Font Awesome -->
|
||||||
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="slick/slick.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css" />
|
||||||
|
<link rel="stylesheet" href="css/tooplate-style.css">
|
||||||
|
<!-- tooplate style -->
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var renderPage = true;
|
||||||
|
|
||||||
|
if (navigator.userAgent.indexOf('MSIE') !== -1
|
||||||
|
|| navigator.appVersion.indexOf('Trident/') > 0) {
|
||||||
|
/* Microsoft Internet Explorer detected in. */
|
||||||
|
alert("Please view this in a modern browser such as Chrome or Microsoft Edge.");
|
||||||
|
renderPage = false;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<!-- Loader -->
|
||||||
|
<div style="z-index:999999999" id="loader-wrapper">
|
||||||
|
<div id="loader"></div>
|
||||||
|
<div class="loader-section section-left"></div>
|
||||||
|
<div class="loader-section section-right"></div>
|
||||||
|
</div>
|
||||||
|
<div class="container">
|
||||||
|
<section class="tm-section-head" id="top">
|
||||||
|
<header id="header" class="text-center tm-text-gray">
|
||||||
|
<div>
|
||||||
|
<a href="#top"><img class="logo" src="img/logo-trasparent.png"></a>
|
||||||
|
</div>
|
||||||
|
<h1>Aplicaciones Móviles para Android e iOS</h1>
|
||||||
|
<h6 class="subtitle"></h6>
|
||||||
|
<div id="navigation-bar"></div>
|
||||||
|
</header>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="tm-section-5" id="tm-section-5">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-ds-2 col-tb-12 col-mb-12 col-lg-12">
|
||||||
|
<div id="information1" class="media media-center ml-padding">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div id="information2" class="media media-center ml-padding">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div id="information3" class="media media-center ml-padding">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<section class="tm-section-6" id="tm-section-6">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-7 col-md-7 col-xs-12">
|
||||||
|
<div class="contact_message">
|
||||||
|
<form action="https://formspree.io/f/mqkwvjlz" method="post" class="contact-form">
|
||||||
|
<div class="row mb-2">
|
||||||
|
<div class="form-group col-xl-6">
|
||||||
|
<input type="text" id="contact_name" name="contact_name" class="form-control"
|
||||||
|
placeholder="Nombre" required />
|
||||||
|
</div>
|
||||||
|
<div class="form-group col-xl-6 pl-xl-1">
|
||||||
|
<input type="email" id="contact_email" name="contact_email" class="form-control"
|
||||||
|
placeholder="Correo electrónico" required />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<textarea id="contact_message" name="contact_message" class="form-control" rows="6"
|
||||||
|
placeholder="Escribe aquí tu mensaje." required></textarea>
|
||||||
|
</div>
|
||||||
|
<button type="submit" class="btn tm-btn-submit float-right btn-big">Enviar</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-5 col-md-5 col-xs-12 tm-contact-right">
|
||||||
|
<div class="tm-address-box">
|
||||||
|
<h2 class="mb-4" id="cnt-section">Contacto</h2>
|
||||||
|
<address>
|
||||||
|
<a class="no-link" href="https://www.google.com/maps/place/Carrer+del+Bon+Rec%C3%A9s,+3,+46035+Val%C3%A8ncia/@39.4904368,-0.3945009,17z/data=!3m1!4b1!4m5!3m4!1s0xd6045f498529177:0xd843de0e6d749068!8m2!3d39.4904327!4d-0.3923122"
|
||||||
|
target="_blank">
|
||||||
|
<i class="fa fa-map-marker" aria-hidden="true" style="margin-left: 0.1em"></i></a>
|
||||||
|
<a class="no-link" href="https://www.google.com/maps/place/Carrer+del+Bon+Rec%C3%A9s,+3,+46035+Val%C3%A8ncia/@39.4904368,-0.3945009,17z/data=!3m1!4b1!4m5!3m4!1s0xd6045f498529177:0xd843de0e6d749068!8m2!3d39.4904327!4d-0.3923122"
|
||||||
|
target="_blank">
|
||||||
|
Carrer del Bon Recés,3</a>
|
||||||
|
<br>46015 Valencia
|
||||||
|
<br>España
|
||||||
|
<br>Teléfono: +34 960130674
|
||||||
|
</address>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<footer class="mt-5">
|
||||||
|
<p class="text-center">Copyright © 2021 DELPHI STUDIO <a href="http://www.delphistudio.es/politica-de-privacidad/" target="_blank" rel="noopener noreferrer">AVISO LEGAL Y POLÍTICA DE PRIVACIDAD</a></p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- load JS files -->
|
||||||
|
<script type="text/javascript" src="js/jquery-1.11.3.min.js"></script>
|
||||||
|
<script src="js/popper.min.js"></script>
|
||||||
|
<!-- https://popper.js.org/ -->
|
||||||
|
<script src="js/bootstrap.min.js"></script>
|
||||||
|
<!-- https://getbootstrap.com/ -->
|
||||||
|
<script type="text/javascript" src="slick/slick.min.js"></script>
|
||||||
|
<!-- Slick Carousel -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
window.onresize = function () {
|
||||||
|
calculateMediaQuery();
|
||||||
|
}
|
||||||
|
$(document).ready(
|
||||||
|
calculateMediaQuery()
|
||||||
|
);
|
||||||
|
function calculateMediaQuery() {
|
||||||
|
if (window.matchMedia('(min-width: 1200px)').matches) {
|
||||||
|
this.mediaQueryInUse = 'desktop';
|
||||||
|
} else if (window.matchMedia('(min-width: 992px) and (max-width: 1199px)').matches) {
|
||||||
|
this.mediaQueryInUse = 'desktop';
|
||||||
|
} else if (window.matchMedia('(min-width: 768px) and (max-width: 991px)').matches) {
|
||||||
|
this.mediaQueryInUse = 'tablet';
|
||||||
|
} else {
|
||||||
|
this.mediaQueryInUse = 'mobile';
|
||||||
|
}
|
||||||
|
if (this.mediaQueryInUse != 'mobile') {
|
||||||
|
document.getElementById("information1").innerHTML = `
|
||||||
|
<img src="img/aplicacionesmoviles/am-01.jpg" class="imgresponsive">
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<p class="mb-0" id="tm-section-4">En los últimos años hemos visto que el 90% del uso de internet es desde dispositivos móviles
|
||||||
|
(Teléfonos celulares, smartphones, tablets, etc).</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.getElementById("information1").style.display = 'flex';
|
||||||
|
document.getElementById("information2").innerHTML = `
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<h2></h2>
|
||||||
|
<p class="mb-0">Delphi Studio ofrece alternativas actualizadas en el desarrollo de aplicaciones para dispositivos móviles.
|
||||||
|
Tenemos una sólida experiencia en programación para Apple y Android.</p>
|
||||||
|
</div>
|
||||||
|
<img src="img/aplicacionesmoviles/am-02.jpg" class="imgresponsive tm-media-img">
|
||||||
|
`;
|
||||||
|
document.getElementById("information2").style.display = 'flex';
|
||||||
|
document.getElementById("information3").innerHTML = `
|
||||||
|
<img src="img/aplicacionesmoviles/am-03.jpg" class="imgresponsive">
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<p class="mb-0" id="tm-section-4">Desarrollamos servicios y aplicaciones corporativas, es decir, las empresas que quieran hacer crecer su negocio
|
||||||
|
(aprovechando esta tecnología) hoy tienen una gran oportunidad de conectarse con sus clientes utilizando una aplicación móvil.
|
||||||
|
En Delphi Studio nos encargamos de todo el ciclo de vida de tu proyecto, desde el estudio y análisis de la idea hasta su puesta en marcha.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.getElementById("information3").style.display = 'flex';
|
||||||
|
document.getElementById("navigation-bar").innerHTML = `
|
||||||
|
<nav class="navbar navbar-expand-sm bg-light navbar-light">
|
||||||
|
<!-- Brand -->
|
||||||
|
<!-- <a class="navbar-brand" href="#">
|
||||||
|
alt=""></a> -->
|
||||||
|
|
||||||
|
<!-- Links -->
|
||||||
|
<ul class="navbar-nav">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="http://www.delphistudio.es/">Inicio</a>
|
||||||
|
</li>
|
||||||
|
<!-- Dropdown -->
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
|
||||||
|
Tecnología
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
<a class="dropdown-item" href="aplicacionesmoviles.html">Aplicaciones Móviles</a>
|
||||||
|
<a class="dropdown-item" href="arduino.html">Arduino</a>
|
||||||
|
<a class="dropdown-item" href="bottelegram.html">Bot Telegram</a>
|
||||||
|
<a class="dropdown-item" href="elkstack.html">ELK Stack</a>
|
||||||
|
<a class="dropdown-item" href="machinelearning.html">Machine Learning</a>
|
||||||
|
<a class="dropdown-item" href="python.html">Python</a>
|
||||||
|
<a class="dropdown-item" href="raspberrypi.html">Raspberry Pi</a>
|
||||||
|
<a class="dropdown-item" href="restsoap.html">Rest y Soap</a>
|
||||||
|
<a class="dropdown-item" href="cs/bpm.html">BPM</a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="#cnt-section">Contacto</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="index.html#sn-section">Sobre Nosotros</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
`;
|
||||||
|
} else {
|
||||||
|
document.getElementById("information1").innerHTML = `
|
||||||
|
<img src="img/aplicacionesmoviles/am-01.jpg" class="imgresponsive">
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<p class="mb-0" id="tm-section-4">Uno de los lenguajes más apoyados por los programadores es Python por que con este lenguaje
|
||||||
|
puedes hacer prácticamente lo que tu quieras.
|
||||||
|
<br>Es uno de los lenguajes de moda en sus múltiples usos: para escritorio, aplicaciones científicas,
|
||||||
|
web, scripting y mucho más.</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.getElementById("information1").style.display = 'block';
|
||||||
|
document.getElementById("information2").innerHTML = `
|
||||||
|
<img src="img/aplicacionesmoviles/am-02.jpg" class="imgresponsive tm-media-img">
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<h2></h2>
|
||||||
|
<p class="mb-0">Delphi Studio te ayuda a optimizar tu infraestructura utilizando las mejores soluciones,
|
||||||
|
para la configuración del servidor y para la implementación de aplicaciones.</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.getElementById("information2").style.display = 'block';
|
||||||
|
document.getElementById("information3").innerHTML = `
|
||||||
|
<img src="img/aplicacionesmoviles/am-03.jpg" class="imgresponsive tm-media-img">
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<h2></h2>
|
||||||
|
<p class="mb-0">Si deseas iniciar un nuevo proyecto en Python, o si necesitas asistencia y/o consultoría para su actual proyecto,
|
||||||
|
no dudes en contactarnos.
|
||||||
|
<br>¡Nuestro equipo de expertos en Delphi Studio, será feliz de ayudarte en todas tus necesidades de desarrollo!</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.getElementById("information3").style.display = 'block';
|
||||||
|
document.getElementById("navigation-bar").innerHTML = `
|
||||||
|
<i class="fa fa-bars mobile-btn" aria-hidden="true" data-toggle="modal" data-target="#exampleModal2"></i>
|
||||||
|
<div style="z-index: 100000000;" class="modal fade" id="exampleModal2" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel2" aria-hidden="true">
|
||||||
|
<div class="modal-dialog modal-dialog-slideout modal-sm" role="document">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h3 class="modal-title" id="exampleModalLabel">Menu</h3>
|
||||||
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||||
|
<span aria-hidden="true">×</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<ul class="navbar-nav">
|
||||||
|
<li class="nav-item">
|
||||||
|
<h5>
|
||||||
|
<a class="nav-link no-link" href="index.html" target="_self" >Inicio</a>
|
||||||
|
</h5>
|
||||||
|
</li>
|
||||||
|
<!-- Dropdown -->
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
<div id="accordion" role="tablist" aria-multiselectable="true">
|
||||||
|
<div class="panel">
|
||||||
|
<h5 class="panel-heading" data-toggle="collapse" data-target="#collapseAvail" data-parent="#accordion" href="#collapseOne"
|
||||||
|
aria-expanded="true" aria-controls="collapseAvail" role="tab" id="headingOne">
|
||||||
|
<a data-toggle="collapse" data-target="#collapseAvail" data-parent="#accordion" href="#collapseOne"
|
||||||
|
aria-expanded="true" aria-controls="collapseAvail" class="d-block no-link">
|
||||||
|
<i class="panel-heading fa fa-chevron-down pull-right"></i> Tecnología
|
||||||
|
</a>
|
||||||
|
</h5>
|
||||||
|
<div id="collapseAvail" class="collapse" role="tabpanel" aria-labelledby="headingOne">
|
||||||
|
<div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="aplicacionesmoviles.html">
|
||||||
|
Aplicaciones Móviles
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="arduino.html">
|
||||||
|
Arduino
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="bottelegram.html">
|
||||||
|
Bot Telegram
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="elkstack.html">
|
||||||
|
ELK Stack
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="machinelearning.html">
|
||||||
|
Machine Learning
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="python.html">
|
||||||
|
Python
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="raspberrypi.html">
|
||||||
|
Raspberry Pi
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="restsoap.html">
|
||||||
|
Rest y Soap
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<h5>
|
||||||
|
<a class="nav-link no-link" href="#cnt-section" data-dismiss="modal" aria-label="Close">Contacto</a>
|
||||||
|
</h5>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<h5>
|
||||||
|
<a class="nav-link no-link" href="index.html#sn-section">Sobre Nosotros</a>
|
||||||
|
</h5>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/slideout/1.0.1/slideout.min.js"></script> -->
|
||||||
|
<script>
|
||||||
|
$(document).ready(function () {
|
||||||
|
if (renderPage) {
|
||||||
|
$('body').addClass('loaded');
|
||||||
|
}
|
||||||
|
// https://css-tricks.com/snippets/jquery/smooth-scrolling/
|
||||||
|
// Select all links with hashes
|
||||||
|
$('a[href*="#"]')
|
||||||
|
// Remove links that don't actually link to anything
|
||||||
|
.not('[href="#"]')
|
||||||
|
.not('[href="#0"]')
|
||||||
|
.click(function (event) {
|
||||||
|
// On-page links
|
||||||
|
if (
|
||||||
|
location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '')
|
||||||
|
&&
|
||||||
|
location.hostname == this.hostname
|
||||||
|
) {
|
||||||
|
// Figure out element to scroll to
|
||||||
|
var target = $(this.hash);
|
||||||
|
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
|
||||||
|
// Does a scroll target exist?
|
||||||
|
if (target.length) {
|
||||||
|
// Only prevent default if animation is actually gonna happen
|
||||||
|
event.preventDefault();
|
||||||
|
$('html, body').animate({
|
||||||
|
scrollTop: target.offset().top + 1
|
||||||
|
}, 1000, function () {
|
||||||
|
// Callback after animation
|
||||||
|
// Must change focus!
|
||||||
|
var $target = $(target);
|
||||||
|
$target.focus();
|
||||||
|
if ($target.is(":focus")) { // Checking if the target was focused
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$target.attr('tabindex', '-1'); // Adding tabindex for elements not focusable
|
||||||
|
$target.focus(); // Set focus again
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
394
public/aplicacionesmóviles.html
Normal file
@@ -0,0 +1,394 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<!-- logo -->
|
||||||
|
<link rel="apple-touch-icon" sizes="57x57" href="img/logo.ico/apple-icon-57x57.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="60x60" href="img/logo.ico/apple-icon-60x60.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="72x72" href="img/logo.ico/apple-icon-72x72.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="76x76" href="img/logo.ico/apple-icon-76x76.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="114x114" href="img/logo.ico/apple-icon-114x114.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="120x120" href="img/logo.ico/apple-icon-120x120.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="144x144" href="img/logo.ico/apple-icon-144x144.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="152x152" href="img/logo.ico/apple-icon-152x152.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="img/logo.ico/apple-icon-180x180.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="192x192" href="img/logo.ico/android-icon-192x192.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="img/logo.ico/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="96x96" href="img/logo.ico/favicon-96x96.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="img/logo.ico/favicon-16x16.png">
|
||||||
|
<link rel="manifest" href="img/logo.ico/manifest.json">
|
||||||
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
|
<meta name="msapplication-TileImage" content="img/logo.ico">
|
||||||
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
<!-- logo fine -->
|
||||||
|
<title>Delphi Studio | Aplicaciones Móviles para Android e iOS</title>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400">
|
||||||
|
<!-- Google web font "Open Sans" -->
|
||||||
|
<link rel="stylesheet" href="font-awesome-4.5.0/css/font-awesome.min.css">
|
||||||
|
<!-- Font Awesome -->
|
||||||
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="slick/slick.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css" />
|
||||||
|
<link rel="stylesheet" href="css/tooplate-style.css">
|
||||||
|
<!-- tooplate style -->
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var renderPage = true;
|
||||||
|
|
||||||
|
if (navigator.userAgent.indexOf('MSIE') !== -1
|
||||||
|
|| navigator.appVersion.indexOf('Trident/') > 0) {
|
||||||
|
/* Microsoft Internet Explorer detected in. */
|
||||||
|
alert("Please view this in a modern browser such as Chrome or Microsoft Edge.");
|
||||||
|
renderPage = false;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<!-- Loader -->
|
||||||
|
<div style="z-index:999999999" id="loader-wrapper">
|
||||||
|
<div id="loader"></div>
|
||||||
|
<div class="loader-section section-left"></div>
|
||||||
|
<div class="loader-section section-right"></div>
|
||||||
|
</div>
|
||||||
|
<div class="container">
|
||||||
|
<section class="tm-section-head" id="top">
|
||||||
|
<header id="header" class="text-center tm-text-gray">
|
||||||
|
<div>
|
||||||
|
<a href="#top"><img class="logo" src="img/logo-trasparent.png"></a>
|
||||||
|
</div>
|
||||||
|
<h1>Aplicaciones Móviles para Android e iOS</h1>
|
||||||
|
<h6 class="subtitle"></h6>
|
||||||
|
<div id="navigation-bar"></div>
|
||||||
|
</header>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="tm-section-5" id="tm-section-5">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-ds-2 col-tb-12 col-mb-12 col-lg-12">
|
||||||
|
<div id="information1" class="media media-center ml-padding">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div id="information2" class="media media-center ml-padding">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div id="information3" class="media media-center ml-padding">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<section class="tm-section-6" id="tm-section-6">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-7 col-md-7 col-xs-12">
|
||||||
|
<div class="contact_message">
|
||||||
|
<form action="https://formspree.io/delphistudio@bittime.it" method="post" class="contact-form">
|
||||||
|
<div class="row mb-2">
|
||||||
|
<div class="form-group col-xl-6">
|
||||||
|
<input type="text" id="contact_name" name="contact_name" class="form-control"
|
||||||
|
placeholder="Nombre" required />
|
||||||
|
</div>
|
||||||
|
<div class="form-group col-xl-6 pl-xl-1">
|
||||||
|
<input type="email" id="contact_email" name="contact_email" class="form-control"
|
||||||
|
placeholder="Correo electrónico" required />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<textarea id="contact_message" name="contact_message" class="form-control" rows="6"
|
||||||
|
placeholder="Escribe aquí tu mensaje." required></textarea>
|
||||||
|
</div>
|
||||||
|
<button type="submit" class="btn tm-btn-submit float-right btn-big">Enviar</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-5 col-md-5 col-xs-12 tm-contact-right">
|
||||||
|
<div class="tm-address-box">
|
||||||
|
<h2 class="mb-4" id="cnt-section">Contacto</h2>
|
||||||
|
<address>
|
||||||
|
<a class="no-link" href="https://www.google.it/maps/place/Carrer+de+les+Garrigues,+17,+46001+Val%C3%A8ncia,+Spagna/@39.4712608,-0.3784316,17z/data=!4m5!3m4!1s0xd604f4c1c838a5d:0x8e12d7a464472964!8m2!3d39.4710745!4d-0.3793221"
|
||||||
|
target="_blank">
|
||||||
|
<i class="fa fa-map-marker" aria-hidden="true" style="margin-left: 0.1em"></i></a>
|
||||||
|
<a class="no-link" href="https://www.google.it/maps/place/Carrer+de+les+Garrigues,+17,+46001+Val%C3%A8ncia,+Spagna/@39.4712608,-0.3784316,17z/data=!4m5!3m4!1s0xd604f4c1c838a5d:0x8e12d7a464472964!8m2!3d39.4710745!4d-0.3793221"
|
||||||
|
target="_blank">
|
||||||
|
Carrer de les Garrigues, 17</a>
|
||||||
|
<br>46001 Valencia
|
||||||
|
<br>España
|
||||||
|
<br>Teléfono: +34 960130674
|
||||||
|
</address>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<footer class="mt-5">
|
||||||
|
<p class="text-center">Copyright © 2018 DELPHI STUDIO</p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- load JS files -->
|
||||||
|
<script type="text/javascript" src="js/jquery-1.11.3.min.js"></script>
|
||||||
|
<script src="js/popper.min.js"></script>
|
||||||
|
<!-- https://popper.js.org/ -->
|
||||||
|
<script src="js/bootstrap.min.js"></script>
|
||||||
|
<!-- https://getbootstrap.com/ -->
|
||||||
|
<script type="text/javascript" src="slick/slick.min.js"></script>
|
||||||
|
<!-- Slick Carousel -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
window.onresize = function () {
|
||||||
|
calculateMediaQuery();
|
||||||
|
}
|
||||||
|
$(document).ready(
|
||||||
|
calculateMediaQuery()
|
||||||
|
);
|
||||||
|
function calculateMediaQuery() {
|
||||||
|
if (window.matchMedia('(min-width: 1200px)').matches) {
|
||||||
|
this.mediaQueryInUse = 'desktop';
|
||||||
|
} else if (window.matchMedia('(min-width: 992px) and (max-width: 1199px)').matches) {
|
||||||
|
this.mediaQueryInUse = 'desktop';
|
||||||
|
} else if (window.matchMedia('(min-width: 768px) and (max-width: 991px)').matches) {
|
||||||
|
this.mediaQueryInUse = 'tablet';
|
||||||
|
} else {
|
||||||
|
this.mediaQueryInUse = 'mobile';
|
||||||
|
}
|
||||||
|
if (this.mediaQueryInUse != 'mobile') {
|
||||||
|
document.getElementById("information1").innerHTML = `
|
||||||
|
<img src="img/aplicacionesmóviles/am-01.jpg" class="imgresponsive">
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<p class="mb-0" id="tm-section-4">En los últimos años hemos visto que el 90% del uso de internet es desde dispositivos móviles
|
||||||
|
(Teléfonos celulares, smartphones, tablets, etc).</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.getElementById("information1").style.display = 'flex';
|
||||||
|
document.getElementById("information2").innerHTML = `
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<h2></h2>
|
||||||
|
<p class="mb-0">Delphi Studio ofrece alternativas actualizadas en el desarrollo de aplicaciones para dispositivos móviles.
|
||||||
|
Tenemos una sólida experiencia en programación para Apple y Android.</p>
|
||||||
|
</div>
|
||||||
|
<img src="img/aplicacionesmóviles/am-02.jpg" class="imgresponsive tm-media-img">
|
||||||
|
`;
|
||||||
|
document.getElementById("information2").style.display = 'flex';
|
||||||
|
document.getElementById("information3").innerHTML = `
|
||||||
|
<img src="img/aplicacionesmóviles/am-03.jpg" class="imgresponsive">
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<p class="mb-0" id="tm-section-4">Desarrollamos servicios y aplicaciones corporativas, es decir, las empresas que quieran hacer crecer su negocio
|
||||||
|
(aprovechando esta tecnología) hoy tienen una gran oportunidad de conectarse con sus clientes utilizando una aplicación móvil.
|
||||||
|
En Delphi Studio nos encargamos de todo el ciclo de vida de tu proyecto, desde el estudio y análisis de la idea hasta su puesta en marcha.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.getElementById("information3").style.display = 'flex';
|
||||||
|
document.getElementById("navigation-bar").innerHTML = `
|
||||||
|
<nav class="navbar navbar-expand-sm bg-light navbar-light">
|
||||||
|
<!-- Brand -->
|
||||||
|
<!-- <a class="navbar-brand" href="#">
|
||||||
|
alt=""></a> -->
|
||||||
|
|
||||||
|
<!-- Links -->
|
||||||
|
<ul class="navbar-nav">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="http://www.delphistudio.es/">Inicio</a>
|
||||||
|
</li>
|
||||||
|
<!-- Dropdown -->
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
|
||||||
|
Tecnología
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
<a class="dropdown-item" href="machinelearning.html">Machine Learning</a>
|
||||||
|
<a class="dropdown-item" href="bottelegram.html">Bot Telegram</a>
|
||||||
|
<a class="dropdown-item" href="arduino.html">Arduino</a>
|
||||||
|
<a class="dropdown-item" href="python.html">Python</a>
|
||||||
|
<a class="dropdown-item" href="raspberrypi.html">Raspberry Pi</a>
|
||||||
|
<a class="dropdown-item" href="restsoap.html">Rest y Soap</a>
|
||||||
|
<a class="dropdown-item" href="aplicacionesmóviles.html">Aplicaciones Móviles</a>
|
||||||
|
<a class="dropdown-item" href="cs/bpm.html">BPM</a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="#cnt-section">Contacto</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="index.html#sn-section">Sobre Nosotros</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
`;
|
||||||
|
} else {
|
||||||
|
document.getElementById("information1").innerHTML = `
|
||||||
|
<img src="img/aplicacionesmóviles/am-01.jpg" class="imgresponsive">
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<p class="mb-0" id="tm-section-4">Uno de los lenguajes más apoyados por los programadores es Python por que con este lenguaje
|
||||||
|
puedes hacer prácticamente lo que tu quieras.
|
||||||
|
<br>Es uno de los lenguajes de moda en sus múltiples usos: para escritorio, aplicaciones científicas,
|
||||||
|
web, scripting y mucho más.</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.getElementById("information1").style.display = 'block';
|
||||||
|
document.getElementById("information2").innerHTML = `
|
||||||
|
<img src="img/python/am-02.png" class="imgresponsive tm-media-img">
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<h2></h2>
|
||||||
|
<p class="mb-0">Delphi Studio te ayuda a optimizar tu infraestructura utilizando las mejores soluciones,
|
||||||
|
para la configuración del servidor y para la implementación de aplicaciones.</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.getElementById("information2").style.display = 'block';
|
||||||
|
document.getElementById("information3").innerHTML = `
|
||||||
|
<img src="img/python/am-03.jpg" class="imgresponsive tm-media-img">
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<h2></h2>
|
||||||
|
<p class="mb-0">Si deseas iniciar un nuevo proyecto en Python, o si necesitas asistencia y/o consultoría para su actual proyecto,
|
||||||
|
no dudes en contactarnos.
|
||||||
|
<br>¡Nuestro equipo de expertos en Delphi Studio, será feliz de ayudarte en todas tus necesidades de desarrollo!</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.getElementById("information3").style.display = 'block';
|
||||||
|
document.getElementById("navigation-bar").innerHTML = `
|
||||||
|
<i class="fa fa-bars mobile-btn" aria-hidden="true" data-toggle="modal" data-target="#exampleModal2"></i>
|
||||||
|
<div style="z-index: 100000000;" class="modal fade" id="exampleModal2" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel2" aria-hidden="true">
|
||||||
|
<div class="modal-dialog modal-dialog-slideout modal-sm" role="document">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h3 class="modal-title" id="exampleModalLabel">Menu</h3>
|
||||||
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||||
|
<span aria-hidden="true">×</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<ul class="navbar-nav">
|
||||||
|
<li class="nav-item">
|
||||||
|
<h5>
|
||||||
|
<a class="nav-link no-link" href="index.html" target="_self" >Inicio</a>
|
||||||
|
</h5>
|
||||||
|
</li>
|
||||||
|
<!-- Dropdown -->
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
<div id="accordion" role="tablist" aria-multiselectable="true">
|
||||||
|
<div class="panel">
|
||||||
|
<h5 class="panel-heading" data-toggle="collapse" data-target="#collapseAvail" data-parent="#accordion" href="#collapseOne"
|
||||||
|
aria-expanded="true" aria-controls="collapseAvail" role="tab" id="headingOne">
|
||||||
|
<a data-toggle="collapse" data-target="#collapseAvail" data-parent="#accordion" href="#collapseOne"
|
||||||
|
aria-expanded="true" aria-controls="collapseAvail" class="d-block no-link">
|
||||||
|
<i class="panel-heading fa fa-chevron-down pull-right"></i> Tecnología
|
||||||
|
</a>
|
||||||
|
</h5>
|
||||||
|
<div id="collapseAvail" class="collapse" role="tabpanel" aria-labelledby="headingOne">
|
||||||
|
<div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="machinelearning.html">
|
||||||
|
Machine Learning
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="bottelegram.html">
|
||||||
|
Bot Telegram
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="arduino.html">
|
||||||
|
Arduino
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="python.html">
|
||||||
|
Python
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="raspberrypi.html">
|
||||||
|
Raspberry Pi
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="restsoap.html">
|
||||||
|
Rest y Soap
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="aplicacionesmóviles.html">
|
||||||
|
Aplicaciones Móviles
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<h5>
|
||||||
|
<a class="nav-link no-link" href="#cnt-section" data-dismiss="modal" aria-label="Close">Contacto</a>
|
||||||
|
</h5>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<h5>
|
||||||
|
<a class="nav-link no-link" href="index.html#sn-section">Sobre Nosotros</a>
|
||||||
|
</h5>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/slideout/1.0.1/slideout.min.js"></script> -->
|
||||||
|
<script>
|
||||||
|
$(document).ready(function () {
|
||||||
|
if (renderPage) {
|
||||||
|
$('body').addClass('loaded');
|
||||||
|
}
|
||||||
|
// https://css-tricks.com/snippets/jquery/smooth-scrolling/
|
||||||
|
// Select all links with hashes
|
||||||
|
$('a[href*="#"]')
|
||||||
|
// Remove links that don't actually link to anything
|
||||||
|
.not('[href="#"]')
|
||||||
|
.not('[href="#0"]')
|
||||||
|
.click(function (event) {
|
||||||
|
// On-page links
|
||||||
|
if (
|
||||||
|
location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '')
|
||||||
|
&&
|
||||||
|
location.hostname == this.hostname
|
||||||
|
) {
|
||||||
|
// Figure out element to scroll to
|
||||||
|
var target = $(this.hash);
|
||||||
|
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
|
||||||
|
// Does a scroll target exist?
|
||||||
|
if (target.length) {
|
||||||
|
// Only prevent default if animation is actually gonna happen
|
||||||
|
event.preventDefault();
|
||||||
|
$('html, body').animate({
|
||||||
|
scrollTop: target.offset().top + 1
|
||||||
|
}, 1000, function () {
|
||||||
|
// Callback after animation
|
||||||
|
// Must change focus!
|
||||||
|
var $target = $(target);
|
||||||
|
$target.focus();
|
||||||
|
if ($target.is(":focus")) { // Checking if the target was focused
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$target.attr('tabindex', '-1'); // Adding tabindex for elements not focusable
|
||||||
|
$target.focus(); // Set focus again
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
382
public/arduino.html
Normal file
@@ -0,0 +1,382 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<!-- logo -->
|
||||||
|
<link rel="apple-touch-icon" sizes="57x57" href="img/logo.ico/apple-icon-57x57.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="60x60" href="img/logo.ico/apple-icon-60x60.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="72x72" href="img/logo.ico/apple-icon-72x72.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="76x76" href="img/logo.ico/apple-icon-76x76.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="114x114" href="img/logo.ico/apple-icon-114x114.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="120x120" href="img/logo.ico/apple-icon-120x120.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="144x144" href="img/logo.ico/apple-icon-144x144.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="152x152" href="img/logo.ico/apple-icon-152x152.png">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="img/logo.ico/apple-icon-180x180.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="192x192" href="img/logo.ico/android-icon-192x192.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="img/logo.ico/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="96x96" href="img/logo.ico/favicon-96x96.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="img/logo.ico/favicon-16x16.png">
|
||||||
|
<link rel="manifest" href="img/logo.ico/manifest.json">
|
||||||
|
<meta name="msapplication-TileColor" content="#ffffff">
|
||||||
|
<meta name="msapplication-TileImage" content="img/logo.ico">
|
||||||
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
<!-- logo fine -->
|
||||||
|
<title>Delphi Studio | ARDUINO</title>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400">
|
||||||
|
<!-- Google web font "Open Sans" -->
|
||||||
|
<link rel="stylesheet" href="font-awesome-4.5.0/css/font-awesome.min.css">
|
||||||
|
<!-- Font Awesome -->
|
||||||
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="slick/slick.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css" />
|
||||||
|
<link rel="stylesheet" href="css/tooplate-style.css">
|
||||||
|
<!-- tooplate style -->
|
||||||
|
|
||||||
|
<script>
|
||||||
|
var renderPage = true;
|
||||||
|
|
||||||
|
if (navigator.userAgent.indexOf('MSIE') !== -1
|
||||||
|
|| navigator.appVersion.indexOf('Trident/') > 0) {
|
||||||
|
/* Microsoft Internet Explorer detected in. */
|
||||||
|
alert("Please view this in a modern browser such as Chrome or Microsoft Edge.");
|
||||||
|
renderPage = false;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<!-- Loader -->
|
||||||
|
<div style="z-index:999999999" id="loader-wrapper">
|
||||||
|
<div id="loader"></div>
|
||||||
|
<div class="loader-section section-left"></div>
|
||||||
|
<div class="loader-section section-right"></div>
|
||||||
|
</div>
|
||||||
|
<div class="container">
|
||||||
|
<section class="tm-section-head" id="top">
|
||||||
|
<header id="header" class="text-center tm-text-gray">
|
||||||
|
<div>
|
||||||
|
<a href="#top"><img class="logo" src="img/logo-trasparent.png"></a>
|
||||||
|
</div>
|
||||||
|
<h1>ARDUINO</h1>
|
||||||
|
<h6 class="subtitle"></h6>
|
||||||
|
<div id="navigation-bar"></div>
|
||||||
|
</header>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="tm-section-5" id="tm-section-5">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-ds-2 col-tb-12 col-mb-12 col-lg-12">
|
||||||
|
<div id="information1"class="media media-center ml-padding">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div id="information2" class="media media-center ml-padding">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<section class="tm-section-6" id="tm-section-6">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-7 col-md-7 col-xs-12">
|
||||||
|
<div class="contact_message">
|
||||||
|
<form action="https://formspree.io/f/mqkwvjlz" method="post" class="contact-form">
|
||||||
|
<div class="row mb-2">
|
||||||
|
<div class="form-group col-xl-6">
|
||||||
|
<input type="text" id="contact_name" name="contact_name" class="form-control"
|
||||||
|
placeholder="Nombre" required />
|
||||||
|
</div>
|
||||||
|
<div class="form-group col-xl-6 pl-xl-1">
|
||||||
|
<input type="email" id="contact_email" name="contact_email" class="form-control"
|
||||||
|
placeholder="Correo electrónico" required />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<textarea id="contact_message" name="contact_message" class="form-control" rows="6"
|
||||||
|
placeholder="Escribe aquí tu mensaje." required></textarea>
|
||||||
|
</div>
|
||||||
|
<button type="submit" class="btn tm-btn-submit float-right btn-big">Enviar</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-5 col-md-5 col-xs-12 tm-contact-right">
|
||||||
|
<div class="tm-address-box">
|
||||||
|
<h2 class="mb-4" id="cnt-section">Contacto</h2>
|
||||||
|
<address>
|
||||||
|
<a class="no-link" href="https://www.google.com/maps/place/Carrer+del+Bon+Rec%C3%A9s,+3,+46035+Val%C3%A8ncia/@39.4904368,-0.3945009,17z/data=!3m1!4b1!4m5!3m4!1s0xd6045f498529177:0xd843de0e6d749068!8m2!3d39.4904327!4d-0.3923122"
|
||||||
|
target="_blank">
|
||||||
|
<i class="fa fa-map-marker" aria-hidden="true" style="margin-left: 0.1em"></i></a>
|
||||||
|
<a class="no-link" href="https://www.google.com/maps/place/Carrer+del+Bon+Rec%C3%A9s,+3,+46035+Val%C3%A8ncia/@39.4904368,-0.3945009,17z/data=!3m1!4b1!4m5!3m4!1s0xd6045f498529177:0xd843de0e6d749068!8m2!3d39.4904327!4d-0.3923122"
|
||||||
|
target="_blank">
|
||||||
|
Carrer del Bon Recés,3</a>
|
||||||
|
<br>46015 Valencia
|
||||||
|
<br>España
|
||||||
|
<br>Teléfono: +34 960130674
|
||||||
|
</address>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<footer class="mt-5">
|
||||||
|
<p class="text-center">Copyright © 2021 DELPHI STUDIO <a href="http://www.delphistudio.es/politica-de-privacidad/" target="_blank" rel="noopener noreferrer">AVISO LEGAL Y POLÍTICA DE PRIVACIDAD</a></p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- load JS files -->
|
||||||
|
<script type="text/javascript" src="js/jquery-1.11.3.min.js"></script>
|
||||||
|
<script src="js/popper.min.js"></script>
|
||||||
|
<!-- https://popper.js.org/ -->
|
||||||
|
<script src="js/bootstrap.min.js"></script>
|
||||||
|
<!-- https://getbootstrap.com/ -->
|
||||||
|
<script type="text/javascript" src="slick/slick.min.js"></script>
|
||||||
|
<!-- Slick Carousel -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
window.onresize = function () {
|
||||||
|
calculateMediaQuery();
|
||||||
|
}
|
||||||
|
$(document).ready(
|
||||||
|
calculateMediaQuery()
|
||||||
|
);
|
||||||
|
function calculateMediaQuery() {
|
||||||
|
if (window.matchMedia('(min-width: 1200px)').matches) {
|
||||||
|
this.mediaQueryInUse = 'desktop';
|
||||||
|
} else if (window.matchMedia('(min-width: 992px) and (max-width: 1199px)').matches) {
|
||||||
|
this.mediaQueryInUse = 'desktop';
|
||||||
|
} else if (window.matchMedia('(min-width: 768px) and (max-width: 991px)').matches) {
|
||||||
|
this.mediaQueryInUse = 'tablet';
|
||||||
|
} else {
|
||||||
|
this.mediaQueryInUse = 'mobile';
|
||||||
|
}
|
||||||
|
if (this.mediaQueryInUse != 'mobile') {
|
||||||
|
document.getElementById("information1").innerHTML=`
|
||||||
|
<img src="img/arduino/ad-01.jpg" class="imgresponsive">
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<p class="mb-0" id="tm-section-4">Aprende a utilizar una de las plataformas de hardware libre más poderosas, difundidas y adoptadas en la actualidad.
|
||||||
|
<br>Delphi Studio te ayuda a conocer los fundamentos de Arduino y te asesora a desarrollar proyectos
|
||||||
|
de electrónica, domótica y robótica para tu empresa.</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.getElementById("information1").style.display='flex';
|
||||||
|
document.getElementById("information2").innerHTML=`
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<h2></h2>
|
||||||
|
<p class="mb-0">Con nosotros entenderas el alcance y las posibilidades de esta plataforma, conocerás las distintas familias de placas
|
||||||
|
Arduino (veremos sus características, ventajas y desventajas para que puedas elegir la que mejor se adapte a las
|
||||||
|
necesidades de tu empresa) y utilizarás el IDE de desarrollo en distintos Sistemas operativos y las consideraciones
|
||||||
|
a tener en cuenta para su alimentación con fuentes, baterías y USB.</p>
|
||||||
|
</div>
|
||||||
|
<img src="img/arduino/ad-02.jpg" class="imgresponsive tm-media-img">
|
||||||
|
`;
|
||||||
|
document.getElementById("information2").style.display='flex';
|
||||||
|
document.getElementById("navigation-bar").innerHTML = `
|
||||||
|
<nav class="navbar navbar-expand-sm bg-light navbar-light">
|
||||||
|
<!-- Brand -->
|
||||||
|
<!-- <a class="navbar-brand" href="#">
|
||||||
|
alt=""></a> -->
|
||||||
|
|
||||||
|
<!-- Links -->
|
||||||
|
<ul class="navbar-nav">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="http://www.delphistudio.es/">Inicio</a>
|
||||||
|
</li>
|
||||||
|
<!-- Dropdown -->
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
|
||||||
|
Tecnología
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
<a class="dropdown-item" href="aplicacionesmoviles.html">Aplicaciones Móviles</a>
|
||||||
|
<a class="dropdown-item" href="arduino.html">Arduino</a>
|
||||||
|
<a class="dropdown-item" href="bottelegram.html">Bot Telegram</a>
|
||||||
|
<a class="dropdown-item" href="elkstack.html">ELK Stack</a>
|
||||||
|
<a class="dropdown-item" href="machinelearning.html">Machine Learning</a>
|
||||||
|
<a class="dropdown-item" href="python.html">Python</a>
|
||||||
|
<a class="dropdown-item" href="raspberrypi.html">Raspberry Pi</a>
|
||||||
|
<a class="dropdown-item" href="restsoap.html">Rest y Soap</a>
|
||||||
|
<a class="dropdown-item" href="cs/bpm.html">BPM</a>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="#cnt-section">Contacto</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="index.html#sn-section">Sobre Nosotros</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
`;
|
||||||
|
} else {
|
||||||
|
document.getElementById("information1").innerHTML=`
|
||||||
|
<img src="img/arduino/ad-01.jpg" class="imgresponsive">
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<p class="mb-0" id="tm-section-4">Aprende a utilizar una de las plataformas de hardware libre más poderosas, difundidas y adoptadas en la actualidad.
|
||||||
|
<br>Delphi Studio te ayuda a conocer los fundamentos de Arduino y te asesora a desarrollar proyectos
|
||||||
|
de electrónica, domótica y robótica para tu empresa.</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.getElementById("information1").style.display='block';
|
||||||
|
document.getElementById("information2").innerHTML=`
|
||||||
|
<img src="img/arduino/ad-02.jpg" class="imgresponsive tm-media-img">
|
||||||
|
<div class="media-body tm-box-5">
|
||||||
|
<h2></h2>
|
||||||
|
<p class="mb-0">Con nosotros entenderas el alcance y las posibilidades de esta plataforma, conocerás las distintas familias de placas
|
||||||
|
Arduino (veremos sus características, ventajas y desventajas para que puedas elegir la que mejor se adapte a las
|
||||||
|
necesidades de tu empresa) y utilizarás el IDE de desarrollo en distintos Sistemas operativos y las consideraciones
|
||||||
|
a tener en cuenta para su alimentación con fuentes, baterías y USB.</p>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
document.getElementById("information2").style.display='block';
|
||||||
|
document.getElementById("navigation-bar").innerHTML = `
|
||||||
|
<i class="fa fa-bars mobile-btn" aria-hidden="true" data-toggle="modal" data-target="#exampleModal2"></i>
|
||||||
|
<div style="z-index: 100000000;" class="modal fade" id="exampleModal2" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel2" aria-hidden="true">
|
||||||
|
<div class="modal-dialog modal-dialog-slideout modal-sm" role="document">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h3 class="modal-title" id="exampleModalLabel">Menu</h3>
|
||||||
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||||
|
<span aria-hidden="true">×</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<ul class="navbar-nav">
|
||||||
|
<li class="nav-item">
|
||||||
|
<h5>
|
||||||
|
<a class="nav-link no-link" href="index.html" target="_self" >Inicio</a>
|
||||||
|
</h5>
|
||||||
|
</li>
|
||||||
|
<!-- Dropdown -->
|
||||||
|
<li class="nav-item dropdown">
|
||||||
|
<div id="accordion" role="tablist" aria-multiselectable="true">
|
||||||
|
<div class="panel">
|
||||||
|
<h5 class="panel-heading" data-toggle="collapse" data-target="#collapseAvail" data-parent="#accordion" href="#collapseOne"
|
||||||
|
aria-expanded="true" aria-controls="collapseAvail" role="tab" id="headingOne">
|
||||||
|
<a data-toggle="collapse" data-target="#collapseAvail" data-parent="#accordion" href="#collapseOne"
|
||||||
|
aria-expanded="true" aria-controls="collapseAvail" class="d-block no-link">
|
||||||
|
<i class="panel-heading fa fa-chevron-down pull-right"></i> Tecnología
|
||||||
|
</a>
|
||||||
|
</h5>
|
||||||
|
<div id="collapseAvail" class="collapse" role="tabpanel" aria-labelledby="headingOne">
|
||||||
|
<div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="aplicacionesmoviles.html">
|
||||||
|
Aplicaciones Móviles
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="Arduino.html">
|
||||||
|
Arduino
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="bottelegram.html">
|
||||||
|
Bot Telegram
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="elkstack.html">
|
||||||
|
ELK Stack
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="machinelearning.html">
|
||||||
|
Machine Learning
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="python.html">
|
||||||
|
Python
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="raspberrypi.html">
|
||||||
|
Raspberry Pi
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<a class="col-xs-12 no-line-link" href="restsoap.html">
|
||||||
|
Rest y Soap
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<h5>
|
||||||
|
<a class="nav-link no-link" href="#cnt-section" data-dismiss="modal" aria-label="Close">Contacto</a>
|
||||||
|
</h5>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<h5>
|
||||||
|
<a class="nav-link no-link" href="index.html#sn-section">Sobre Nosotros</a>
|
||||||
|
</h5>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/slideout/1.0.1/slideout.min.js"></script> -->
|
||||||
|
<script>
|
||||||
|
$(document).ready(function () {
|
||||||
|
if (renderPage) {
|
||||||
|
$('body').addClass('loaded');
|
||||||
|
}
|
||||||
|
// https://css-tricks.com/snippets/jquery/smooth-scrolling/
|
||||||
|
// Select all links with hashes
|
||||||
|
$('a[href*="#"]')
|
||||||
|
// Remove links that don't actually link to anything
|
||||||
|
.not('[href="#"]')
|
||||||
|
.not('[href="#0"]')
|
||||||
|
.click(function (event) {
|
||||||
|
// On-page links
|
||||||
|
if (
|
||||||
|
location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '')
|
||||||
|
&&
|
||||||
|
location.hostname == this.hostname
|
||||||
|
) {
|
||||||
|
// Figure out element to scroll to
|
||||||
|
var target = $(this.hash);
|
||||||
|
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
|
||||||
|
// Does a scroll target exist?
|
||||||
|
if (target.length) {
|
||||||
|
// Only prevent default if animation is actually gonna happen
|
||||||
|
event.preventDefault();
|
||||||
|
$('html, body').animate({
|
||||||
|
scrollTop: target.offset().top + 1
|
||||||
|
}, 1000, function () {
|
||||||
|
// Callback after animation
|
||||||
|
// Must change focus!
|
||||||
|
var $target = $(target);
|
||||||
|
$target.focus();
|
||||||
|
if ($target.is(":focus")) { // Checking if the target was focused
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$target.attr('tabindex', '-1'); // Adding tabindex for elements not focusable
|
||||||
|
$target.focus(); // Set focus again
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
111
public/bitpresenze/.htaccess
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
# Apache Server Configs v1.1.0 | MIT License
|
||||||
|
# https://github.com/h5bp/server-configs-apache
|
||||||
|
|
||||||
|
# (!) Using `.htaccess` files slows down Apache, therefore, if you have access
|
||||||
|
# to the main server config file (usually called `httpd.conf`), you should add
|
||||||
|
# this logic there: http://httpd.apache.org/docs/current/howto/htaccess.html.
|
||||||
|
|
||||||
|
|
||||||
|
# ##############################################################################
|
||||||
|
# # URL REWRITES #
|
||||||
|
# ##############################################################################
|
||||||
|
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# | Rewrite engine |
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Turning on the rewrite engine and enabling the `FollowSymLinks` option is
|
||||||
|
# necessary for the following directives to work.
|
||||||
|
|
||||||
|
# If your web host doesn't allow the `FollowSymlinks` option, you may need to
|
||||||
|
# comment it out and use `Options +SymLinksIfOwnerMatch` but, be aware of the
|
||||||
|
# performance impact: http://httpd.apache.org/docs/current/misc/perf-tuning.html#symlinks
|
||||||
|
|
||||||
|
# Also, some cloud hosting services require `RewriteBase` to be set:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
RewriteRule ^(\d+)w(\d+)[-/].*[-/]f(\d+)-.*$ index\.php?id=$1-$2-$3&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^(\d+)w(\d+)[-/]f(\d+)[-/].*$ index\.php?id=$1-$2-$3&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^f(\d+)[-/].*[-/](\d+)w(\d+)[-/].*$ index\.php?id=$2-$3-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^f(\d+)[-/](\d+)w(\d+)[-/].*$ index\.php?id=$2-$3-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/]f(\d+)[-/](\d+)w(\d+)[-/].*$ index\.php?id=$2-$3-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/]f(\d+)[-/].*[-/](\d+)w(\d+)[-/].*$ index\.php?id=$2-$3-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/](\d+)w(\d+)[-/].*[-/]f(\d+)[-/].*$ index\.php?id=$1-$2-$3&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/](\d+)w(\d+)[-/]f(\d+)[-/].*$ index\.php?id=$1-$2-$3&%{QUERY_STRING} [L]
|
||||||
|
|
||||||
|
RewriteRule ^(\d+)w(\d+)[-/].*[-/]f(\d+)-.*$ index\.php?id=$1-$2-$3&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^(\d+)w(\d+)[-/]f(\d+)[-/].*$ index\.php?id=$1-$2-$3&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^f(\d+)[-/].*[-/](\d+)w(\d+)[-/].*$ index\.php?id=$2-$3-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^f(\d+)[-/](\d+)w(\d+)[-/].*$ index\.php?id=$2-$3-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/]f(\d+)[-/](\d+)w(\d+)[-/].*$ index\.php?id=$2-$3-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/]f(\d+)[-/].*[-/](\d+)w(\d+)[-/].*$ index\.php?id=$2-$3-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/](\d+)w(\d+)[-/].*[-/]f(\d+)[-/].*$ index\.php?id=$1-$2-$3&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/](\d+)w(\d+)[-/]f(\d+)[-/].*$ index\.php?id=$1-$2-$3&%{QUERY_STRING} [L]
|
||||||
|
|
||||||
|
RewriteRule ^(\d+)w(\d+)[-/].*[-/]f(\d+)-.*$ index\.php?id=$1-$2-$3&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^(\d+)w(\d+)[-/]f(\d+)[-/].*$ index\.php?id=$1-$2-$3&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^f(\d+)[-/].*[-/](\d+)w(\d+)[-/].*$ index\.php?id=$2-$3-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^f(\d+)[-/](\d+)w(\d+)[-/].*$ index\.php?id=$2-$3-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/]f(\d+)[-/](\d+)w(\d+)[-/].*$ index\.php?id=$2-$3-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/]f(\d+)[-/].*[-/](\d+)w(\d+)[-/].*$ index\.php?id=$2-$3-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/](\d+)w(\d+)[-/].*[-/]f(\d+)[-/].*$ index\.php?id=$1-$2-$3&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/](\d+)w(\d+)[-/]f(\d+)[-/].*$ index\.php?id=$1-$2-$3&%{QUERY_STRING} [L]
|
||||||
|
|
||||||
|
RewriteRule ^v(\d+)[-/].*[-/]b(\d+)-.*$ index\.php?id=$1-$2&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^v(\d+)[-/]b(\d+)[-/].*$ index\.php?id=$1-$2&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^b(\d+)[-/].*[-/]v(\d+)[-/].*$ index\.php?id=$2-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^b(\d+)[-/]v(\d+)[-/].*$ index\.php?id=$2-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/]b(\d+)[-/]v(\d+)[-/].*$ index\.php?id=$2-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/]b(\d+)[-/].*[-/]v(\d+)[-/].*$ index\.php?id=$2-$1&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/]v(\d+)[-/].*[-/]b(\d+)[-/].*$ index\.php?id=$1-$2&%{QUERY_STRING} [L]
|
||||||
|
RewriteRule ^.*[-/]v(\d+)[-/]b(\d+)[-/].*$ index\.php?id=$1-$2&%{QUERY_STRING} [L]
|
||||||
|
|
||||||
|
# http://www.rackspace.com/knowledge_center/frequently-asked-question/why-is-mod-rewrite-not-working-on-my-site
|
||||||
|
|
||||||
|
<IfModule mod_rewrite.c>
|
||||||
|
Options +FollowSymlinks
|
||||||
|
# Options +SymLinksIfOwnerMatch
|
||||||
|
RewriteEngine On
|
||||||
|
RewriteBase /
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# | Suppressing / Forcing the "www." at the beginning of URLs |
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
# The same content should never be available under two different URLs especially
|
||||||
|
# not with and without "www." at the beginning. This can cause SEO problems
|
||||||
|
# (duplicate content), therefore, you should choose one of the alternatives and
|
||||||
|
# redirect the other one.
|
||||||
|
|
||||||
|
# By default option 1 (no "www.") is activated:
|
||||||
|
# http://no-www.org/faq.php?q=class_b
|
||||||
|
|
||||||
|
# If you'd prefer to use option 2, just comment out all the lines from option 1
|
||||||
|
# and uncomment the ones from option 2.
|
||||||
|
|
||||||
|
# IMPORTANT: NEVER USE BOTH RULES AT THE SAME TIME!
|
||||||
|
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
|
# Option 1: rewrite www.example.com → example.com
|
||||||
|
|
||||||
|
# <IfModule mod_rewrite.c>
|
||||||
|
# RewriteCond %{HTTPS} !=on
|
||||||
|
# RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
|
||||||
|
# RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
|
||||||
|
# </IfModule>
|
||||||
|
|
||||||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
|
# Option 2: rewrite example.com → www.example.com
|
||||||
|
|
||||||
|
# Be aware that the following might not be a good idea if you use "real"
|
||||||
|
# subdomains for certain parts of your website.
|
||||||
|
|
||||||
|
<IfModule mod_rewrite.c>
|
||||||
|
RewriteCond %{HTTPS} !=on
|
||||||
|
RewriteCond %{HTTP_HOST} !^www\..+$ [NC]
|
||||||
|
RewriteCond %{HTTP_HOST} !=localhost [NC]
|
||||||
|
RewriteCond %{HTTP_HOST} !=127.0.0.1
|
||||||
BIN
public/bitpresenze/css/leaguegothic-regular-webfont.eot
Normal file
223
public/bitpresenze/css/leaguegothic-regular-webfont.svg
Normal file
@@ -0,0 +1,223 @@
|
|||||||
|
<?xml version="1.0" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<metadata></metadata>
|
||||||
|
<defs>
|
||||||
|
<font id="league_gothicregular" horiz-adv-x="724" >
|
||||||
|
<font-face units-per-em="2048" ascent="1505" descent="-543" />
|
||||||
|
<missing-glyph horiz-adv-x="315" />
|
||||||
|
<glyph horiz-adv-x="2048" />
|
||||||
|
<glyph horiz-adv-x="2048" />
|
||||||
|
<glyph unicode="
" horiz-adv-x="2048" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="315" />
|
||||||
|
<glyph unicode="	" horiz-adv-x="315" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="315" />
|
||||||
|
<glyph unicode="!" horiz-adv-x="387" d="M74 1505l55 -1099h129l55 1099h-239zM86 0h215v227h-215v-227z" />
|
||||||
|
<glyph unicode=""" horiz-adv-x="532" d="M78 1505l31 -551h153l31 551h-215zM332 1505l30 -551h154l31 551h-215z" />
|
||||||
|
<glyph unicode="#" horiz-adv-x="1232" d="M49 438h199l-60 -438h197l59 438h261l-60 -438h197l59 438h191l26 195h-190l37 258h192l27 194h-193l58 420h-197l-57 -420h-260l57 420h-197l-57 -420h-197l-26 -194h196l-37 -258h-198zM471 633l37 258h260l-37 -258h-260z" />
|
||||||
|
<glyph unicode="$" horiz-adv-x="692" d="M37 358q3 -134 61 -227q64 -103 189 -125v-221h123v217q127 14 192 127q53 90 53 242q0 65 -18 127q-36 106 -119 225q-9 13 -32.5 47t-36.5 51q-78 102 -115 166q-58 97 -58 172q0 57 21 111q20 51 63 51q44 1 65 -33t28 -92l192 25q-14 118 -63 186q-62 85 -172 96v125 h-123v-131q-115 -25 -170 -131q-45 -86 -45 -211q0 -66 20 -125q30 -100 117 -227q52 -77 129 -176q42 -62 55 -84q58 -100 58 -174q0 -77 -21 -127q-23 -58 -72 -58q-63 0 -96 58q-30 49 -33 129z" />
|
||||||
|
<glyph unicode="%" horiz-adv-x="1001" d="M55 911q0 -48 19 -88q43 -88 141 -88q60 0 90 27q65 56 68 149v437q-3 48 -21 86q-21 40 -52 64t-85 24q-62 0 -92 -27q-68 -59 -68 -147v-437zM158 0h137l547 1505h-131zM178 911v437q-2 10 2 26q12 29 35 29q16 0 21 -8q14 -21 14 -47v-437q0 -55 -35 -55q-42 0 -37 55 zM631 158q0 -50 18 -88q46 -86 142 -86q61 0 90 26q64 55 67 148v436q-3 50 -20 88q-21 40 -52 64t-85 24q-63 0 -93 -27q-67 -58 -67 -149v-436zM754 158v436q-2 11 2 27q4 9 7 14t10 9.5t18 4.5q15 0 20 -8q14 -21 14 -47v-436q0 -13 -4 -29q-12 -29 -30 -29q-16 0 -23 11 q-16 20 -14 47z" />
|
||||||
|
<glyph unicode="&" horiz-adv-x="854" d="M49 315q0 -132 86 -231q87 -100 217 -100t252 139q38 -41 68 -62q74 -55 112 -69q19 -8 29 -8v235q-8 3 -35 23q-19 12 -57 53q45 91 70 207q17 78 22 151l-176 33q-26 -152 -47 -211q-63 93 -148 285q94 124 148 227q97 181 28 371q-62 164 -235 164q-105 0 -160 -52 q-107 -98 -110 -276q0 -226 106 -442q-40 -61 -63.5 -101.5t-51.5 -99t-41.5 -117t-13.5 -119.5zM263 320q-5 64 5 104q15 88 45 133q65 -120 174 -295q-24 -30 -38.5 -45t-37.5 -28t-49 -13q-42 0 -69 43q-25 37 -30 101zM311 1270q16 76 72 76q33 0 49 -23q32 -43 29 -123 q0 -95 -101 -252q-32 79 -41 125q-26 111 -8 197z" />
|
||||||
|
<glyph unicode="'" horiz-adv-x="309" d="M57 1505l31 -551h154l30 551h-215z" />
|
||||||
|
<glyph unicode="(" horiz-adv-x="561" d="M66 645q0 -198 45 -362q84 -326 247 -580l162 84q-72 103 -129 238q-129 301 -129 620q0 192 41 350q79 311 217 510l-162 84q-81 -127 -147 -280q-145 -337 -145 -664z" />
|
||||||
|
<glyph unicode=")" horiz-adv-x="561" d="M41 -213l162 -84q79 125 145 279q148 344 148 663q0 198 -45 365q-84 313 -248 579l-162 -84q72 -110 129 -239q129 -315 129 -621q0 -190 -41 -348q-83 -316 -217 -510z" />
|
||||||
|
<glyph unicode="*" horiz-adv-x="677" d="M74 1251l172 -34l-115 -138l131 -80l76 152l78 -152l131 80l-115 138l172 34l-43 148l-164 -70l19 176h-154l19 -176l-164 70z" />
|
||||||
|
<glyph unicode="+" horiz-adv-x="1060" d="M74 649h370v-346h172v346h371v172h-371v346h-172v-346h-370v-172z" />
|
||||||
|
<glyph unicode="," horiz-adv-x="309" d="M45 0h72l-72 -266h102l113 266v227h-215v-227z" />
|
||||||
|
<glyph unicode="-" horiz-adv-x="444" d="M74 455h297v194h-297v-194z" />
|
||||||
|
<glyph unicode="." horiz-adv-x="321" d="M53 0h215v227h-215v-227z" />
|
||||||
|
<glyph unicode="/" horiz-adv-x="720" d="M8 -147h168l537 1652h-162z" />
|
||||||
|
<glyph unicode="0" d="M68 309q3 -97 36 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q61 46 89 110q33 67 36 164v887q-3 95 -36 162q-29 67 -89 112q-69 52 -170 52q-103 0 -172 -52q-55 -42 -86 -112q-33 -67 -36 -162v-887zM289 309v887q0 34 8 55q17 56 65 56q29 0 46 -17 q28 -35 28 -94v-887q0 -36 -8 -55q-14 -55 -66 -55q-27 0 -43 16q-30 35 -30 94z" />
|
||||||
|
<glyph unicode="1" horiz-adv-x="475" d="M25 1180h147v-1180h221v1505h-133q-17 -38 -49 -78q-81 -86 -186 -106v-141z" />
|
||||||
|
<glyph unicode="2" horiz-adv-x="731" d="M55 0h600v219h-350q129 217 217 422q129 305 129 506q0 174 -61 266q-74 109 -234 109q-166 0 -237 -119q-58 -97 -58 -270v-105h222v105q0 80 14 129q17 55 59 55q44 0 62 -62q12 -42 12 -122q-3 -120 -63 -299q-51 -151 -127 -297q-88 -170 -185 -318v-219z" />
|
||||||
|
<glyph unicode="3" horiz-adv-x="686" d="M45 1071h217q0 148 14 205q10 51 52 51q48 0 61 -65q8 -39 8 -129v-121q0 -52 -14 -80q-13 -32 -49 -47.5t-105 -20.5v-184h19q65 -3 108 -27q62 -41 62 -155q-2 -39 -2 -129t-8 -127q-14 -64 -62 -64q-21 0 -34.5 11.5t-22.5 41.5q-19 62 -19 203h-217q0 -190 43 -289 q68 -161 250 -161q71 0 119 26q87 48 129 160q33 96 37 172q2 23 2 43q0 149 -27 252.5t-100 161.5l2 2q54 54 80 145t26 252q0 96 -39 176q-72 148 -247 148q-178 0 -244 -160q-39 -97 -39 -291z" />
|
||||||
|
<glyph unicode="4" horiz-adv-x="684" d="M25 328h342v-328h202v328h103v194h-103v983h-221l-323 -983v-194zM213 522l129 471l12 45h13v-516h-154z" />
|
||||||
|
<glyph unicode="5" horiz-adv-x="704" d="M74 438q0 -204 43 -301q66 -153 245 -153q177 0 246 145q43 88 43 248v336q0 93 -37 174q-63 137 -208 137q-24 3 -46 -6q-34 -11 -81 -45v313h344v219h-535v-792h186q0 30 25 69q29 41 61 41q34 0 52 -30.5t18 -79.5v-336q0 -112 -16 -158q-15 -43 -52 -43q-38 0 -53 45 q-14 41 -14 158v59h-221z" />
|
||||||
|
<glyph unicode="6" horiz-adv-x="700" d="M66 309q0 -109 43 -188q72 -137 245 -137q174 0 246 137q43 79 43 188v307q0 115 -37 191q-62 127 -209 127q-47 0 -110 -37v268q0 87 14 125q12 39 53 39q25 0 38.5 -12t19.5 -41q10 -49 10 -205h221v94q0 139 -41 219q-73 138 -248 138t-248 -138q-40 -78 -40 -219 v-856zM287 244v456q2 22 18.5 42t48.5 20q31 0 49.5 -24.5t18.5 -43.5v-450q0 -19 -18.5 -43.5t-49.5 -24.5q-33 0 -50 24t-17 44z" />
|
||||||
|
<glyph unicode="7" horiz-adv-x="589" d="M8 1286h332l-225 -1286h229l221 1284v221h-557v-219z" />
|
||||||
|
<glyph unicode="8" horiz-adv-x="696" d="M53 322q0 -41 13 -105q18 -92 77 -154q75 -79 205 -79t205 79q60 63 78 154q12 59 12 105v176q0 87 -29.5 165.5t-85.5 131.5q50 50 76.5 123t26.5 153v127q0 100 -37 176q-72 148 -246 148q-172 0 -244 -148q-38 -78 -38 -176v-127q0 -80 26 -153t76 -123 q-56 -53 -85.5 -131.5t-29.5 -165.5v-176zM270.5 416q-1.5 129 10.5 194q9 66 67 66t70 -66q10 -72 10 -200q0 -99 -10 -164q-12 -60 -70 -60q-46 0 -61 52q-15 49 -16.5 178zM284.5 1120q1.5 118 14.5 162q12 45 49 45q43 0 55 -51q11 -64 11 -156q0 -108 -11 -172 q-12 -55 -55 -55q-44 0 -53 55q-12 54 -10.5 172z" />
|
||||||
|
<glyph unicode="9" horiz-adv-x="700" d="M57 340q0 -139 41 -217q71 -139 248 -139t248 139q41 78 41 217v856q0 108 -43 190q-74 136 -246 136t-246 -136q-43 -82 -43 -190v-293q0 -114 37 -190q62 -127 209 -127q48 0 111 37v-283q0 -81 -13 -125q-14 -39 -55 -39q-25 0 -38 12t-19 41q-10 49 -10 205h-222v-94 zM279 825v437q0 19 18 43t49 24q34 0 51 -23.5t17 -43.5v-443q-2 -22 -19 -41.5t-49 -19.5q-31 0 -49 24t-18 43z" />
|
||||||
|
<glyph unicode=":" horiz-adv-x="362" d="M74 0h215v227h-215v-227zM74 893h215v227h-215v-227z" />
|
||||||
|
<glyph unicode=";" horiz-adv-x="362" d="M74 0h71l-71 -266h102l113 266v227h-215v-227zM74 893h215v227h-215v-227z" />
|
||||||
|
<glyph unicode="<" horiz-adv-x="1058" d="M74 649l911 -475v199l-698 356l698 356v199l-911 -475v-160z" />
|
||||||
|
<glyph unicode="=" horiz-adv-x="1058" d="M74 477h911v172h-911v-172zM74 864h911v172h-911v-172z" />
|
||||||
|
<glyph unicode=">" horiz-adv-x="1058" d="M74 174l911 475v160l-911 475v-199l698 -356l-698 -356v-199z" />
|
||||||
|
<glyph unicode="?" horiz-adv-x="645" d="M25 1260l178 -84q18 54 43 90q41 55 88 55q40 0 59 -37q12 -30 8 -57q-9 -42 -53 -113q-64 -105 -92 -182q-45 -123 -45 -270v-256h190v256q0 51 13 108q21 88 71 172q8 13 21 35.5t18 30.5q29 50 41.5 73.5t25.5 65t13 80.5q0 98 -45 172q-68 111 -221 114 q-126 3 -217 -100q-75 -84 -96 -153zM199 0h215v227h-215v-227z" />
|
||||||
|
<glyph unicode="@" horiz-adv-x="872" d="M66 303q0 -42 18 -94.5t57 -99.5q101 -125 299 -125q214 0 320 143l-152 86q-51 -63 -168 -63q-99 0 -151 59q-39 42 -39 94v889q0 49 39 96q54 62 151 62q100 0 154 -62q37 -45 37 -96v-45q-6 12 -27 33q-38 34 -86 34q-77 0 -111 -47t-34 -123v-485q0 -172 145 -172 q28 0 51 10q43 21 62 58l20 -56h164v793q0 43 -18 99t-56 104q-103 127 -301 127q-199 0 -299 -127q-39 -48 -57 -103.5t-18 -99.5v-889zM535 573v455q0 53 47 53q23 0 36 -14t13 -39v-455q0 -53 -49 -53q-47 0 -47 53z" />
|
||||||
|
<glyph unicode="A" horiz-adv-x="765" d="M20 0h216l40 307h213l41 -307h215l-227 1505h-270zM307 541l64 475l6 39h12l6 -39l64 -475h-152z" />
|
||||||
|
<glyph unicode="B" horiz-adv-x="745" d="M82 0h272q188 9 271 135q71 109 71 291q0 114 -24 184q-48 139 -129 185q77 71 108 137q29 62 29 174q0 216 -102 311q-95 88 -302 88h-194v-1505zM303 219v463q66 0 98 -23q66 -48 66 -208q0 -161 -66 -209q-32 -23 -98 -23zM303 885v401q65 0 98 -22q66 -45 66 -179 q0 -133 -66 -178q-33 -22 -98 -22z" />
|
||||||
|
<glyph unicode="C" horiz-adv-x="708" d="M68 309q3 -97 36 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q61 46 89 110q33 67 36 164v207h-206v-207q0 -34 -9 -55q-18 -55 -75 -55q-27 0 -43 16q-32 37 -35 94v887q4 39 10 55q21 56 68 56q34 0 51 -17q33 -36 33 -94v-207h206v207q-3 95 -36 162 q-29 67 -89 112q-69 52 -170 52q-103 0 -172 -52q-55 -42 -86 -112q-33 -67 -36 -162v-887z" />
|
||||||
|
<glyph unicode="D" horiz-adv-x="761" d="M82 0h174q156 0 243.5 35.5t131.5 120.5q40 80 52.5 215t12.5 381q0 247 -12.5 382.5t-52.5 215.5q-44 85 -131 120t-244 35h-174v-1505zM303 221v1063q63 0 94 -15t47 -65q18 -68 21 -160q2 -72 2 -290q0 -219 -2 -291q-3 -96 -21 -160q-16 -52 -47 -67t-94 -15z" />
|
||||||
|
<glyph unicode="E" horiz-adv-x="628" d="M82 0h506v227h-285v414h205v242h-205v395h285v227h-506v-1505z" />
|
||||||
|
<glyph unicode="F" horiz-adv-x="616" d="M82 0h221v655h205v228h-205v395h305v227h-526v-1505z" />
|
||||||
|
<glyph unicode="G" horiz-adv-x="737" d="M68 309v-18q0 -82 24 -146q26 -66 78 -110q57 -51 158 -51t172 88l26 -72h131v750h-309v-187h88v-272q0 -36 -8 -55q-14 -56 -66 -56q-26 0 -43 17q-30 35 -30 94v905q0 34 8 55q17 56 65 56q29 0 46 -17q28 -35 28 -94v-231h221v231q-3 95 -36 162q-29 67 -89 112 q-69 52 -170 52q-103 0 -172 -52q-55 -42 -86 -112q-33 -67 -36 -162v-887z" />
|
||||||
|
<glyph unicode="H" horiz-adv-x="778" d="M82 0h221v655h172v-655h221v1505h-221v-622h-172v622h-221v-1505z" />
|
||||||
|
<glyph unicode="I" horiz-adv-x="385" d="M82 0h221v1505h-221v-1505z" />
|
||||||
|
<glyph unicode="J" horiz-adv-x="423" d="M12 -14q20 -1 39 -1q154 0 230 81q71 77 71 213v1226h-221v-1192q0 -52 -18 -73q-29 -38 -80 -38q-10 0 -21 1v-217z" />
|
||||||
|
<glyph unicode="K" horiz-adv-x="768" d="M82 0h221v532l51 123l13 31h6l6 -31l153 -655h216l-230 1010l203 495h-215l-184 -501l-11 -25h-8v526h-221v-1505z" />
|
||||||
|
<glyph unicode="L" horiz-adv-x="604" d="M82 0h514v205h-293v1300h-221v-1505z" />
|
||||||
|
<glyph unicode="M" horiz-adv-x="991" d="M82 0h205v1010h12l8 -64l142 -946h94l141 946l8 64h13v-1010h204v1505h-270l-131 -688l-10 -80h-4l-11 80l-131 688h-270v-1505z" />
|
||||||
|
<glyph unicode="N" horiz-adv-x="808" d="M82 0h203v854h12l18 -70l215 -784h197v1505h-203v-854h-12l-18 70l-215 784h-197v-1505z" />
|
||||||
|
<glyph unicode="O" d="M68 309q3 -97 36 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q61 46 89 110q33 67 36 164v887q-3 95 -36 162q-29 67 -89 112q-69 52 -170 52q-103 0 -172 -52q-55 -42 -86 -112q-33 -67 -36 -162v-887zM289 309v887q0 34 8 55q17 56 65 56q29 0 46 -17 q28 -35 28 -94v-887q0 -36 -8 -55q-14 -55 -66 -55q-27 0 -43 16q-30 35 -30 94z" />
|
||||||
|
<glyph unicode="P" horiz-adv-x="720" d="M82 0h221v602q162 0 266 98q123 116 123 355q0 240 -123 356q-99 94 -266 94h-221v-1505zM303 827v453q99 0 135 -53q31 -46 31 -180q0 -132 -31 -173q-34 -47 -135 -47z" />
|
||||||
|
<glyph unicode="Q" horiz-adv-x="729" d="M68 309q3 -97 36 -164q30 -67 86 -110q63 -51 172 -51q55 0 111 18q72 -117 227 -117v189q-58 11 -88 53q24 56 27 66q18 65 18 116v887q-3 95 -36 162q-29 67 -89 112q-69 52 -170 52q-103 0 -172 -52q-55 -42 -86 -112q-33 -67 -36 -162v-887zM289 309v887q0 34 8 55 q17 56 65 56q29 0 46 -17q28 -35 28 -94v-887q0 -36 -8 -55q-14 -55 -66 -55q-27 0 -43 16q-30 35 -30 94z" />
|
||||||
|
<glyph unicode="R" horiz-adv-x="739" d="M82 0h221v635h59l115 -635h221l-141 729q61 41 92 132.5t31 209.5q0 217 -91 325.5t-286 108.5h-221v-1505zM303 840v446q70 0 105 -31q59 -52 59 -192q0 -139 -59 -191q-36 -32 -105 -32z" />
|
||||||
|
<glyph unicode="S" horiz-adv-x="702" d="M37 422q0 -203 55 -303q74 -135 266 -135q167 0 244 114q64 95 64 264q0 107 -66 236q-41 80 -141 229q-94 137 -119 181q-55 95 -55 161q0 147 75 150q48 0 72 -70q17 -52 17 -147l217 20q0 160 -56 267q-71 133 -246 133h-8q-143 -3 -223 -115q-65 -94 -65 -238 q0 -61 18 -120q34 -117 109 -234q74 -115 139 -207q30 -46 57 -90q58 -104 58 -166q0 -166 -91 -166q-63 0 -86 82q-18 53 -18 174z" />
|
||||||
|
<glyph unicode="T" horiz-adv-x="647" d="M4 1278h209v-1278h221v1278h209v227h-639v-227z" />
|
||||||
|
<glyph unicode="U" horiz-adv-x="749" d="M80 309q3 -95 37 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q59 45 88 110q34 69 37 164v1196h-221v-1196q0 -34 -9 -55q-14 -55 -65 -55q-27 0 -43 16q-31 36 -31 94v1196h-221v-1196z" />
|
||||||
|
<glyph unicode="V" horiz-adv-x="716" d="M18 1505l230 -1505h221l229 1505h-215l-110 -827l-8 -64h-13l-8 64l-111 827h-215z" />
|
||||||
|
<glyph unicode="W" horiz-adv-x="1036" d="M25 1505l202 -1505h172l103 713l12 88h8l13 -88l102 -713h172l203 1505h-205l-88 -782l-4 -49h-17l-6 49l-94 782h-160l-94 -782l-6 -49h-16l-5 49l-88 782h-204z" />
|
||||||
|
<glyph unicode="X" horiz-adv-x="737" d="M16 0h217l127 449l5 18h8l4 -18l127 -449h217l-244 791l240 714h-217l-121 -381l-6 -18h-8l-7 18l-120 381h-218l240 -714z" />
|
||||||
|
<glyph unicode="Y" horiz-adv-x="700" d="M14 1505l226 -864v-641h221v641l225 864h-217l-111 -481l-6 -14h-4l-6 14l-111 481h-217z" />
|
||||||
|
<glyph unicode="Z" horiz-adv-x="626" d="M20 0h586v219h-352l352 1067v219h-536v-219h297l-347 -1048v-238z" />
|
||||||
|
<glyph unicode="[" horiz-adv-x="538" d="M82 -213h399v197h-202v1325h202v196h-399v-1718z" />
|
||||||
|
<glyph unicode="\" horiz-adv-x="792" d="M8 1692l608 -1872h168l-614 1872h-162z" />
|
||||||
|
<glyph unicode="]" horiz-adv-x="538" d="M57 -16v-197h400v1718h-400v-196h203v-1325h-203z" />
|
||||||
|
<glyph unicode="^" horiz-adv-x="1101" d="M53 809h199l299 543l299 -543h199l-381 696h-234z" />
|
||||||
|
<glyph unicode="_" horiz-adv-x="1210" d="M74 -154v-172h1063v172h-1063z" />
|
||||||
|
<glyph unicode="`" horiz-adv-x="1024" d="M293 1489l162 -184h159l-106 184h-215z" />
|
||||||
|
<glyph unicode="a" horiz-adv-x="661" d="M49 260q0 -154 64 -225q41 -51 102 -51q60 0 109 39q35 28 57 67h14q0 -66 19 -90h202q-14 86 -14 195v688q0 109 -76 182q-75 72 -176 72q-120 0 -198 -88q-80 -90 -80 -211v-47h207v53q0 21 4 53q11 59 55 59q37 0 51 -34q6 -20 6 -68v-123q-2 -5 -5 -9.5t-9 -9.5 t-11.5 -8.5t-15.5 -9t-16.5 -9t-20 -10.5t-20.5 -11q-104 -55 -162 -127q-86 -107 -86 -277zM252 291q0 84 35.5 151.5t107.5 98.5v-287q0 -29 -25 -48.5t-61 -19.5q-33 0 -47 43q-10 29 -10 62z" />
|
||||||
|
<glyph unicode="b" horiz-adv-x="686" d="M82 0h207v74q34 -30 53 -45q61 -45 111 -45q75 0 122 75q37 61 37 144v715q0 81 -37 145q-49 74 -122 74q-31 0 -58 -15q-50 -22 -106 -75v458h-207v-1505zM289 246v628q0 25 19 46.5t42 21.5t39.5 -19.5t16.5 -48.5v-628q0 -29 -16.5 -48.5t-39.5 -19.5 q-24 0 -42.5 19.5t-18.5 48.5z" />
|
||||||
|
<glyph unicode="c" horiz-adv-x="645" d="M66 315q0 -179 75 -260q65 -71 189 -71q136 0 198 67q68 74 68 254v109h-207v-156q0 -52 -12 -71t-47 -19q-26 0 -39.5 15.5t-16 32t-2.5 42.5v604q0 26 2.5 42.5t16 32t39.5 15.5q35 0 47 -19t12 -71v-135h207v88q0 180 -68 254q-62 68 -198 68q-123 0 -189 -72 q-75 -81 -75 -260v-490z" />
|
||||||
|
<glyph unicode="d" horiz-adv-x="686" d="M74 203q0 -85 39 -144q44 -75 120 -75q32 0 60 14q46 21 104 76v-74h207v1505h-207v-458q-34 30 -53 45q-61 45 -111 45q-75 0 -120 -74q-39 -62 -39 -145v-715zM281 246v628q0 29 16 48.5t39 19.5t42 -21.5t19 -46.5v-628q0 -29 -18.5 -48.5t-42.5 -19.5q-23 0 -39 19.5 t-16 48.5z" />
|
||||||
|
<glyph unicode="e" horiz-adv-x="659" d="M66 279q3 -78 32 -148q66 -147 234 -147q101 0 155 45q55 44 81.5 102t31.5 141v129h-192v-122q0 -34 -9 -58q-14 -55 -65 -55q-27 0 -43 16q-30 39 -33 97v243h342v326q-3 71 -33 143q-67 146 -233 146q-103 0 -154 -45q-105 -87 -114 -250v-563zM258 684v158 q3 39 10 57q18 57 66 57q29 0 45 -16q29 -36 29 -98v-158h-150z" />
|
||||||
|
<glyph unicode="f" horiz-adv-x="475" d="M20 934h105v-934h207v934h104v186h-104v29v49q0 32 6 62q14 69 59 69q15 0 43 -4q3 -1 9.5 -2t9.5 -2v178l-25 6q-21 8 -72 8q-154 0 -206 -137q-31 -81 -31 -225v-31h-105v-186z" />
|
||||||
|
<glyph unicode="g" horiz-adv-x="700" d="M12 -184q0 -117 92 -168q79 -46 240 -49q146 0 242 61q112 73 112 225q0 130 -94 197q-71 48 -192 63q-68 10 -107 23q-51 13 -51 47q0 25 29 51q6 -2 20 -2h19q96 0 151 43q106 81 115 234v317q0 15 -2 21t-2 22q-2 4 -6 27q43 24 120 24v185q-43 0 -98 -41 q-33 -23 -72 -62q-73 103 -206 103q-99 0 -150 -45q-101 -83 -113 -240v-305q2 -35 17 -92q28 -103 102 -152q-48 -25 -86 -72q-43 -53 -43 -96q0 -116 125 -149q-71 -33 -111 -70q-51 -48 -51 -100zM213 -150q0 55 76 99l106 -21q70 -11 94 -32q17 -17 17 -48 q0 -36 -53 -57q-46 -18 -105 -18q-68 0 -101.5 21t-33.5 56zM262 537v307q-1 8 -1 16q0 18 5 35q12 51 56 51q25 0 38 -16q25 -36 25 -86v-307q0 -31 -6 -52q-16 -49 -57 -49q-23 0 -37 17q-23 26 -23 73v11z" />
|
||||||
|
<glyph unicode="h" horiz-adv-x="690" d="M82 0h207v883q6 10 18 26q27 27 49 27q50 0 50 -49v-887h206v918q0 81 -37 145q-45 74 -118 74q-27 0 -54 -15q-37 -20 -90 -73q-22 -22 -24 -23v479h-207v-1505z" />
|
||||||
|
<glyph unicode="i" horiz-adv-x="370" d="M82 0h207v1120h-207v-1120zM82 1298h207v207h-207v-207z" />
|
||||||
|
<glyph unicode="j" horiz-adv-x="364" d="M-45 -182v-191q12 -4 20 -6q21 -6 70 -6q157 0 209 135q29 74 29 221v1149h-207v-1147v-47q0 -21 -4 -53q-14 -63 -60 -63q-11 0 -39 4q-3 1 -9 2t-9 2zM76 1298h207v207h-207v-207z" />
|
||||||
|
<glyph unicode="k" horiz-adv-x="641" d="M82 0h207v387l26 66l7 16h10l4 -16l102 -453h199l-188 756l149 364h-186l-101 -293l-12 -36h-10v714h-207v-1505z" />
|
||||||
|
<glyph unicode="l" horiz-adv-x="370" d="M82 0h207v1505h-207v-1505z" />
|
||||||
|
<glyph unicode="m" horiz-adv-x="1021" d="M82 0h207v883q6 10 22 26q27 27 56 27q55 0 55 -49v-887h194v883q4 8 23 26q27 27 55 27q56 0 56 -49v-887h194v918q0 81 -37 145q-45 74 -119 74q-24 0 -55 -17q-61 -36 -100 -78q-21 -21 -33 -30q-44 125 -139 125q-26 0 -53 -15q-48 -26 -95 -73q-22 -22 -24 -23v94 h-207v-1120z" />
|
||||||
|
<glyph unicode="n" horiz-adv-x="690" d="M82 0h207v883q6 10 18 26q27 27 49 27q50 0 50 -49v-887h206v918q0 81 -37 145q-45 74 -118 74q-27 0 -54 -15q-37 -20 -90 -73q-22 -22 -24 -23v94h-207v-1120z" />
|
||||||
|
<glyph unicode="o" horiz-adv-x="657" d="M63 279q3 -76 33 -148q66 -147 232 -147q101 0 155 45q54 44 80 102.5t31 140.5v576q-3 71 -33 143q-67 146 -233 146q-103 0 -154 -45q-102 -86 -111 -250v-563zM258 279v563q-1 8 -1 16q0 23 7 41q15 57 64 57q29 0 45 -16q26 -33 26 -87v-11v-563q1 -8 1 -16 q0 -24 -7 -42q-14 -55 -65 -55q-27 0 -43 16q-27 35 -27 86v11z" />
|
||||||
|
<glyph unicode="p" horiz-adv-x="686" d="M82 -385h207v459q34 -30 53 -45q61 -45 111 -45q75 0 122 75q37 61 37 144v715q0 81 -37 145q-49 74 -122 74q-31 0 -58 -15q-50 -22 -106 -75v73h-207v-1505zM289 246v628q0 29 18.5 48.5t42.5 19.5q23 0 39.5 -19.5t16.5 -48.5v-628q0 -29 -16.5 -48.5t-39.5 -19.5 t-42 21.5t-19 46.5z" />
|
||||||
|
<glyph unicode="q" horiz-adv-x="686" d="M74 203q0 -85 39 -144q44 -75 120 -75q32 0 60 14q46 21 104 76v-459h207v1505h-207v-73q-34 30 -53 45q-61 45 -111 45q-75 0 -120 -74q-39 -62 -39 -145v-715zM281 246v628q0 29 16 48.5t39 19.5q24 0 42.5 -19.5t18.5 -48.5v-628q0 -25 -19 -46.5t-42 -21.5t-39 19.5 t-16 48.5z" />
|
||||||
|
<glyph unicode="r" horiz-adv-x="503" d="M82 0h207v778q0 65 45 103q36 34 104 34q34 0 58 -8v230q-94 0 -158 -60q-22 -22 -34.5 -45t-14.5 -37v125h-207v-1120z" />
|
||||||
|
<glyph unicode="s" horiz-adv-x="630" d="M37 326q0 -131 49 -215q74 -127 240 -127q132 0 206 102q58 81 58 205q0 93 -62 194q-33 52 -129 148q-60 56 -90 96q-45 55 -45 105q0 56 12 86q14 45 52 45q41 0 59 -45q8 -27 8 -86h193q0 131 -41 200q-61 103 -214 103h-9q-132 -3 -201 -103q-51 -77 -51 -200 q0 -105 63 -199q35 -52 133 -146q42 -42 64 -66.5t43.5 -62t21.5 -69.5q0 -135 -71 -135q-55 0 -80 63q-17 40 -17 107h-192z" />
|
||||||
|
<glyph unicode="t" horiz-adv-x="501" d="M20 934h105v-574q0 -154 31 -237q52 -139 206 -139q50 0 80 6q5 1 15.5 4t15.5 4v203q-4 -1 -12 -2t-12 -2q-28 -4 -52 -4q-43 0 -57 67q-8 37 -8 117v557h141v186h-141v277h-207v-277h-105v-186z" />
|
||||||
|
<glyph unicode="u" horiz-adv-x="690" d="M78 203q0 -83 37 -144q44 -75 118 -75q27 0 56 16q35 19 90 74q18 18 22 20v-94h207v1120h-207v-882q-13 -22 -18 -27q-27 -27 -49 -27q-23 0 -36 10t-13 39v887h-207v-917z" />
|
||||||
|
<glyph unicode="v" horiz-adv-x="602" d="M16 1120l183 -1120h204l183 1120h-201l-68 -649l-8 -72h-16l-8 72l-68 649h-201z" />
|
||||||
|
<glyph unicode="w" horiz-adv-x="905" d="M20 1120l166 -1120h172l80 535l11 63h8l10 -63l80 -535h172l166 1120h-189l-65 -585l-8 -64h-13l-10 64l-86 585h-123l-86 -585l-10 -64h-12l-9 64l-65 585h-189z" />
|
||||||
|
<glyph unicode="x" horiz-adv-x="618" d="M16 0h201l84 283l6 30h4l6 -30l84 -283h201l-192 578l176 542h-195l-74 -262l-6 -31h-4l-6 31l-74 262h-194l176 -542z" />
|
||||||
|
<glyph unicode="y" horiz-adv-x="634" d="M25 1120l190 -1153q0 -34 -8 -61q-18 -65 -68 -103q-21 -16 -55.5 -19t-38.5 1q-10 0 -12 2v-184q50 -4 67 -4h25q114 0 197 100q74 89 90 217l198 1204h-202l-82 -688l-4 -57h-9l-4 57l-82 688h-202z" />
|
||||||
|
<glyph unicode="z" horiz-adv-x="532" d="M12 0h504v188h-285l285 764v168h-459v-188h240l-285 -764v-168z" />
|
||||||
|
<glyph unicode="{" horiz-adv-x="688" d="M61 453q73 -3 107 -62q25 -46 25 -78v-397q0 -116 24 -188t76 -113q50 -39 131.5 -54.5t206.5 -13.5v172q-72 0 -116 7.5t-71 29.5q-55 44 -55 160v397q0 76 -32 129t-95 93q63 39 95 91t32 130v397q0 116 55 160q27 22 71 29.5t116 7.5v172q-125 2 -206.5 -13.5 t-131.5 -54.5q-52 -41 -76 -113t-24 -188v-397q0 -37 -25 -80q-33 -60 -107 -60v-163z" />
|
||||||
|
<glyph unicode="|" horiz-adv-x="356" d="M82 -512h192v2204h-192v-2204z" />
|
||||||
|
<glyph unicode="}" horiz-adv-x="688" d="M57 -281v-172q126 -2 208 13.5t132 54.5q52 41 75.5 113t23.5 188v397q0 34 24 78q34 59 107 62v163q-74 0 -107 60q-24 41 -24 80v397q0 116 -23.5 188t-75.5 113q-50 39 -132 54.5t-208 13.5v-172q72 0 116 -7.5t71 -29.5q55 -44 55 -160v-397q0 -78 32 -130t95 -91 q-63 -40 -95 -93t-32 -129v-397q0 -116 -55 -160q-27 -22 -71 -29.5t-116 -7.5z" />
|
||||||
|
<glyph unicode="~" horiz-adv-x="1280" d="M113 1352l135 -58q14 40 47 90q64 91 154 91q70 0 178 -74q54 -34 83 -50.5t82 -33.5t107 -17q82 0 145 48q119 94 181 262l-135 57q-20 -50 -48 -92q-59 -90 -143 -90q-74 0 -174 71q-6 4 -29 18t-31 19t-29.5 17t-33 16.5t-32.5 12.5t-38 11t-39 6t-44 3 q-89 0 -154 -47q-128 -100 -182 -260z" />
|
||||||
|
<glyph horiz-adv-x="624" d="M53 1012h215v227h-71l71 266h-102l-113 -266v-227zM356 1012h215v227h-71l71 266h-102l-113 -266v-227z" />
|
||||||
|
<glyph horiz-adv-x="624" d="M53 1012h103l112 266v227h-215v-227h72zM356 1012h103l112 266v227h-215v-227h72z" />
|
||||||
|
<glyph unicode="¡" horiz-adv-x="387" d="M74 -385h239l-55 1100h-129zM86 893h215v227h-215v-227z" />
|
||||||
|
<glyph unicode="¢" horiz-adv-x="636" d="M66 508q0 -300 208 -330v-301h123v303q97 14 144 88.5t47 229.5v108h-189v-155q0 -49 -18 -70t-55 -21q-38 0 -55 27t-17 64v604q0 36 17 63t55 27q37 0 55 -20.5t18 -69.5v-135h189v88q0 155 -47 229q-48 71 -144 86v244h-123v-242q-208 -30 -208 -328v-489z" />
|
||||||
|
<glyph unicode="£" horiz-adv-x="817" d="M4 63l146 -79q10 30 28 51q37 51 86 51q8 0 16.5 -1.5t18.5 -4.5t17 -6t19.5 -9t18 -9t20 -10.5t19.5 -10.5q96 -51 144 -51q102 0 170.5 99t80.5 282l-188 22q-3 -101 -29 -145q-23 -42 -53 -45q-39 3 -63 22q-38 23 -70 37q57 117 57 219q0 72 -24 174h174v137h-211 l-6 25q-24 78 -35.5 119t-23 104.5t-11.5 114.5q0 70 21 113q23 55 69 55q66 0 92 -60q23 -53 23 -137h213q0 177 -66 279q-83 126 -266 123q-152 -3 -231 -123q-64 -98 -64 -250q0 -84 78 -342l6 -21h-147v-137h188q31 -108 31 -174q0 -98 -37 -199q-49 -8 -92 -45 q-73 -67 -119 -168z" />
|
||||||
|
<glyph unicode="¥" horiz-adv-x="720" d="M25 1505l196 -753h-147v-138h176v-137h-176v-137h176v-340h221v340h176v137h-176v137h176v138h-147l196 753h-217l-110 -481l-7 -14h-4l-6 14l-110 481h-217z" />
|
||||||
|
<glyph unicode="¨" horiz-adv-x="1024" d="M272 1305h191v200h-191v-200zM561 1305h191v200h-191v-200z" />
|
||||||
|
<glyph unicode="©" horiz-adv-x="1644" d="M53 752q0 -155 60 -296t166 -247t246 -165.5t296 -59.5q157 0 298 59.5t247 165.5t165.5 246.5t59.5 296.5q0 157 -59.5 297.5t-165.5 246.5t-247 166t-298 60q-155 0 -295.5 -60t-246.5 -166q-107 -107 -166.5 -247t-59.5 -297zM172 752q0 131 51 250t142 210t208 141 t248 50q132 0 251 -50t210 -141t141 -209.5t50 -250.5q0 -131 -50 -248.5t-141 -208.5t-210.5 -142t-250.5 -51t-248 51t-208 142t-142 208.5t-51 248.5zM627 487q0 -52 22 -98q50 -98 170 -98q70 0 109 31q71 60 80 165v125h-138v-125q3 -16 -4 -32q-12 -31 -45 -31 q-18 0 -28 10q-21 18 -21 53v531q0 16 6 31q12 32 43 32q21 0 31 -10q21 -21 18 -53v-125h138v125q-3 52 -25 98q-50 98 -164 98q-71 0 -112 -30q-80 -64 -80 -166v-531z" />
|
||||||
|
<glyph unicode="­" horiz-adv-x="444" d="M74 455h297v194h-297v-194z" />
|
||||||
|
<glyph unicode="®" horiz-adv-x="1644" d="M53 752q0 -155 60 -296t166 -247t246 -165.5t296 -59.5q157 0 298 59.5t247 165.5t165.5 246.5t59.5 296.5q0 157 -59.5 297.5t-165.5 246.5t-247 166t-298 60q-155 0 -295.5 -60t-246.5 -166q-107 -107 -166.5 -247t-59.5 -297zM172 752q0 131 51 250t142 210t208 141 t248 50q132 0 251 -50t210 -141t141 -209.5t50 -250.5q0 -131 -50 -248.5t-141 -208.5t-210.5 -142t-250.5 -51t-248 51t-208 142t-142 208.5t-51 248.5zM625 313h145v365h55l95 -365h151l-106 400q56 47 72 95t16 126q0 258 -232 258h-196v-879zM770 805v258h45 q63 0 84 -43q14 -29 14 -88q0 -57 -14 -86q-20 -41 -84 -41h-45z" />
|
||||||
|
<glyph unicode="¯" horiz-adv-x="1024" d="M313 1315h398v162h-398v-162z" />
|
||||||
|
<glyph unicode="´" horiz-adv-x="1024" d="M410 1305h159l162 184h-215z" />
|
||||||
|
<glyph unicode="·" horiz-adv-x="215" d="M0 649h215v228h-215v-228z" />
|
||||||
|
<glyph unicode="¸" horiz-adv-x="1024" d="M426 -111v-141h63l-40 -133h104l45 133v141h-172z" />
|
||||||
|
<glyph unicode="¿" horiz-adv-x="645" d="M41 -106q0 -93 47 -170q69 -114 219 -117q125 -3 219 102q58 65 95 152l-179 84q-12 -46 -43 -88q-40 -58 -88 -58q-41 0 -57 39q-14 28 -10 56q9 41 53 112q64 105 92 182q45 133 45 271v256h-190v-256q0 -53 -13 -107q-23 -97 -69 -172q-8 -15 -23 -38.5t-18 -28.5 q-29 -50 -41.5 -73.5t-25.5 -65t-13 -80.5zM231 893h215v227h-215v-227z" />
|
||||||
|
<glyph unicode="À" horiz-adv-x="765" d="M20 0h216l40 307h213l41 -307h215l-227 1505h-270zM141 1823l162 -185h160l-107 185h-215zM307 541l64 475l6 39h12l6 -39l64 -475h-152z" />
|
||||||
|
<glyph unicode="Á" horiz-adv-x="765" d="M20 0h216l40 307h213l41 -307h215l-227 1505h-270zM293 1638h160l161 185h-215zM307 541l64 475l6 39h12l6 -39l64 -475h-152z" />
|
||||||
|
<glyph unicode="Â" horiz-adv-x="765" d="M20 0h216l40 307h213l41 -307h215l-227 1505h-270zM133 1638h189l61 72l63 -72h189l-141 185h-220zM307 541l64 475l6 39h12l6 -39l64 -475h-152z" />
|
||||||
|
<glyph unicode="Ã" horiz-adv-x="765" d="M20 0h216l40 307h213l41 -307h215l-227 1505h-270zM184 1632q5 3 33 17q46 16 76 16q51 -3 92 -20q43 -19 88 -19q23 0 41 6q42 10 68 33v152q-5 -3 -33 -17q-46 -16 -76 -16q-44 3 -90 22q-49 17 -90 17q-23 0 -41 -6q-43 -14 -68 -33v-152zM307 541l64 475l6 39h12 l6 -39l64 -475h-152z" />
|
||||||
|
<glyph unicode="Ä" horiz-adv-x="765" d="M20 0h216l40 307h213l41 -307h215l-227 1505h-270zM143 1638h191v201h-191v-201zM307 541l64 475l6 39h12l6 -39l64 -475h-152zM432 1638h191v201h-191v-201z" />
|
||||||
|
<glyph unicode="Å" horiz-adv-x="765" d="M20 0h216l40 307h213l41 -307h215l-227 1505h-270zM231 1761q0 -62 45 -102.5t109 -40.5t108 40.5t44 102.5t-44 103t-108 41t-109 -41t-45 -103zM307 541l64 475l6 39h12l6 -39l64 -475h-152zM309 1761q0 29 23 50.5t53 21.5t53 -21.5t23 -50.5t-23 -50t-53 -21t-53 21 t-23 50z" />
|
||||||
|
<glyph unicode="Æ" horiz-adv-x="1099" d="M16 0h220l90 307h227v-307h506v227h-285v414h205v242h-205v395h285v227h-623zM393 541l150 514h10v-514h-160z" />
|
||||||
|
<glyph unicode="Ç" horiz-adv-x="708" d="M68 309q3 -97 36 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q61 46 89 110q33 67 36 164v207h-206v-207q0 -34 -9 -55q-18 -55 -75 -55q-27 0 -43 16q-32 37 -35 94v887q4 39 10 55q21 56 68 56q34 0 51 -17q33 -36 33 -94v-207h206v207q-3 95 -36 162 q-29 67 -89 112q-69 52 -170 52q-103 0 -172 -52q-55 -42 -86 -112q-33 -67 -36 -162v-887zM268 -111v-141h64l-41 -133h104l45 133v141h-172z" />
|
||||||
|
<glyph unicode="È" horiz-adv-x="628" d="M82 0h506v227h-285v414h205v242h-205v395h285v227h-506v-1505zM111 1823l161 -185h160l-106 185h-215z" />
|
||||||
|
<glyph unicode="É" horiz-adv-x="628" d="M82 0h506v227h-285v414h205v242h-205v395h285v227h-506v-1505zM236 1638h159l162 185h-215z" />
|
||||||
|
<glyph unicode="Ê" horiz-adv-x="628" d="M82 0h506v227h-285v414h205v242h-205v395h285v227h-506v-1505zM84 1638h188l62 72l63 -72h189l-142 185h-219z" />
|
||||||
|
<glyph unicode="Ë" horiz-adv-x="628" d="M82 0h506v227h-285v414h205v242h-205v395h285v227h-506v-1505zM94 1638h191v201h-191v-201zM383 1638h190v201h-190v-201z" />
|
||||||
|
<glyph unicode="Ì" horiz-adv-x="401" d="M-6 1823l162 -185h159l-106 185h-215zM98 0h221v1505h-221v-1505z" />
|
||||||
|
<glyph unicode="Í" horiz-adv-x="401" d="M82 0h221v1505h-221v-1505zM86 1638h160l162 185h-215z" />
|
||||||
|
<glyph unicode="Î" horiz-adv-x="370" d="M-66 1638h189l61 72l64 -72h188l-141 185h-219zM74 0h221v1505h-221v-1505z" />
|
||||||
|
<glyph unicode="Ï" horiz-adv-x="372" d="M-53 1638h190v201h-190v-201zM76 0h221v1505h-221v-1505zM236 1638h190v201h-190v-201z" />
|
||||||
|
<glyph unicode="Ð" horiz-adv-x="761" d="M20 655h62v-655h174q156 0 243.5 35.5t131.5 120.5q40 80 52.5 215t12.5 381q0 247 -12.5 382.5t-52.5 215.5q-44 85 -131 120t-244 35h-174v-622h-62v-228zM303 221v434h84v228h-84v401q63 0 94 -15t47 -65q18 -68 21 -160q2 -72 2 -290q0 -219 -2 -291q-3 -96 -21 -160 q-16 -52 -47 -67t-94 -15z" />
|
||||||
|
<glyph unicode="Ñ" horiz-adv-x="808" d="M82 0h203v854h12l18 -70l215 -784h197v1505h-203v-854h-12l-18 70l-215 784h-197v-1505zM207 1632q5 3 33 17q46 16 75 16q52 -3 93 -20q43 -19 88 -19q23 0 41 6q41 10 67 33v152q-5 -3 -33 -17q-46 -16 -75 -16q-44 3 -90 22q-49 17 -91 17q-23 0 -41 -6 q-42 -13 -67 -33v-152z" />
|
||||||
|
<glyph unicode="Ò" d="M68 309q3 -97 36 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q61 46 89 110q33 67 36 164v887q-3 95 -36 162q-29 67 -89 112q-69 52 -170 52q-103 0 -172 -52q-55 -42 -86 -112q-33 -67 -36 -162v-887zM121 1823l162 -185h159l-106 185h-215zM289 309v887 q0 34 8 55q17 56 65 56q29 0 46 -17q28 -35 28 -94v-887q0 -36 -8 -55q-14 -55 -66 -55q-27 0 -43 16q-30 35 -30 94z" />
|
||||||
|
<glyph unicode="Ó" d="M68 309q3 -97 36 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q61 46 89 110q33 67 36 164v887q-3 95 -36 162q-29 67 -89 112q-69 52 -170 52q-103 0 -172 -52q-55 -42 -86 -112q-33 -67 -36 -162v-887zM285 1638h159l162 185h-215zM289 309v887q0 34 8 55 q17 56 65 56q29 0 46 -17q28 -35 28 -94v-887q0 -36 -8 -55q-14 -55 -66 -55q-27 0 -43 16q-30 35 -30 94z" />
|
||||||
|
<glyph unicode="Ô" d="M68 309q3 -97 36 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q61 46 89 110q33 67 36 164v887q-3 95 -36 162q-29 67 -89 112q-69 52 -170 52q-103 0 -172 -52q-55 -42 -86 -112q-33 -67 -36 -162v-887zM113 1638h188l61 72l64 -72h188l-141 185h-219zM289 309v887 q0 34 8 55q17 56 65 56q29 0 46 -17q28 -35 28 -94v-887q0 -36 -8 -55q-14 -55 -66 -55q-27 0 -43 16q-30 35 -30 94z" />
|
||||||
|
<glyph unicode="Õ" d="M68 309q3 -97 36 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q61 46 89 110q33 67 36 164v887q-3 95 -36 162q-29 67 -89 112q-69 52 -170 52q-103 0 -172 -52q-55 -42 -86 -112q-33 -67 -36 -162v-887zM164 1632q5 3 33 17q46 16 75 16q52 -3 93 -20 q43 -19 88 -19q23 0 41 6q41 10 67 33v152q-5 -3 -33 -17q-46 -16 -75 -16q-45 3 -91 22q-49 17 -90 17q-23 0 -41 -6q-42 -13 -67 -33v-152zM289 309v887q0 34 8 55q17 56 65 56q29 0 46 -17q28 -35 28 -94v-887q0 -36 -8 -55q-14 -55 -66 -55q-27 0 -43 16q-30 35 -30 94z " />
|
||||||
|
<glyph unicode="Ö" d="M68 309q3 -97 36 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q61 46 89 110q33 67 36 164v887q-3 95 -36 162q-29 67 -89 112q-69 52 -170 52q-103 0 -172 -52q-55 -42 -86 -112q-33 -67 -36 -162v-887zM123 1638h190v201h-190v-201zM289 309v887q0 34 8 55 q17 56 65 56q29 0 46 -17q28 -35 28 -94v-887q0 -36 -8 -55q-14 -55 -66 -55q-27 0 -43 16q-30 35 -30 94zM412 1638h190v201h-190v-201z" />
|
||||||
|
<glyph unicode="Ø" d="M59 -20h129l15 47q62 -43 159 -43q107 0 170 51q61 46 89 110q33 67 36 164v887q0 27 -6 57q-13 74 -39 123l45 150h-122l-15 -47q-65 43 -158 43q-103 0 -172 -52q-55 -42 -86 -112q-33 -67 -36 -162v-887q0 -19 4 -55q15 -83 34 -117zM289 309l147 488v-488 q0 -36 -8 -55q-14 -55 -66 -55q-27 0 -43 16q-30 35 -30 94zM289 727v469q0 34 8 55q17 56 65 56q44 0 62 -41q12 -38 12 -60z" />
|
||||||
|
<glyph unicode="Ù" horiz-adv-x="749" d="M80 309q3 -95 37 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q59 45 88 110q34 69 37 164v1196h-221v-1196q0 -34 -9 -55q-14 -55 -65 -55q-27 0 -43 16q-31 36 -31 94v1196h-221v-1196zM145 1823l162 -185h160l-107 185h-215z" />
|
||||||
|
<glyph unicode="Ú" horiz-adv-x="749" d="M80 309q3 -95 37 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q59 45 88 110q34 69 37 164v1196h-221v-1196q0 -34 -9 -55q-14 -55 -65 -55q-27 0 -43 16q-31 36 -31 94v1196h-221v-1196zM307 1638h160l162 185h-215z" />
|
||||||
|
<glyph unicode="Û" horiz-adv-x="749" d="M80 309q3 -95 37 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q59 45 88 110q34 69 37 164v1196h-221v-1196q0 -34 -9 -55q-14 -55 -65 -55q-27 0 -43 16q-31 36 -31 94v1196h-221v-1196zM125 1638h188l62 72l63 -72h189l-142 185h-219z" />
|
||||||
|
<glyph unicode="Ü" horiz-adv-x="749" d="M80 309q3 -95 37 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q59 45 88 110q34 69 37 164v1196h-221v-1196q0 -34 -9 -55q-14 -55 -65 -55q-27 0 -43 16q-31 36 -31 94v1196h-221v-1196zM135 1638h191v201h-191v-201zM424 1638h190v201h-190v-201z" />
|
||||||
|
<glyph unicode="Ý" horiz-adv-x="704" d="M16 1505l226 -864v-641h221v641l225 864h-217l-111 -481l-6 -14h-4l-6 14l-111 481h-217zM254 1638h160l161 185h-215z" />
|
||||||
|
<glyph unicode="Þ" d="M82 0h221v360q161 0 266 99q123 116 123 354q0 240 -123 356q-100 95 -266 95h-2v241h-219v-1505zM303 586v452q99 0 135 -53q31 -46 31 -180q0 -131 -31 -172q-34 -47 -135 -47z" />
|
||||||
|
<glyph unicode="ß" horiz-adv-x="733" d="M66 0h206v1235q0 44 19 73t55 29q42 0 64 -28t22 -72q0 -53 -25 -85t-61 -32v-141q71 0 96 -72q31 -88 31 -332q0 -230 -31 -315q-24 -67 -96 -67v-193q88 0 148 21.5t100 78.5q86 124 86 475q0 220 -41 338q-37 108 -111 150q88 66 88 174q0 124 -65 201q-71 84 -205 84 t-213 -86q-67 -73 -67 -201v-1235z" />
|
||||||
|
<glyph unicode="à" horiz-adv-x="681" d="M49 260q0 -154 64 -225q41 -51 102 -51q60 0 109 39q35 28 57 67h14q0 -66 19 -90h202q-14 86 -14 195v688q0 109 -76 182q-75 72 -176 72q-120 0 -198 -88q-80 -90 -80 -211v-47h207v53q0 21 4 53q11 59 55 59q37 0 51 -34q6 -20 6 -68v-123q-2 -5 -5 -9.5t-9 -9.5 t-11.5 -8.5t-15.5 -9t-16.5 -9t-20 -10.5t-20.5 -11q-104 -55 -162 -127q-86 -107 -86 -277zM102 1489l162 -184h160l-107 184h-215zM252 291q0 84 35.5 151.5t107.5 98.5v-287q0 -29 -25 -48.5t-61 -19.5q-33 0 -47 43q-10 29 -10 62z" />
|
||||||
|
<glyph unicode="á" horiz-adv-x="681" d="M49 260q0 -154 64 -225q41 -51 102 -51q60 0 109 39q35 28 57 67h14q0 -66 19 -90h202q-14 86 -14 195v688q0 109 -76 182q-75 72 -176 72q-120 0 -198 -88q-80 -90 -80 -211v-47h207v53q0 21 4 53q11 59 55 59q37 0 51 -34q6 -20 6 -68v-123q-2 -5 -5 -9.5t-9 -9.5 t-11.5 -8.5t-15.5 -9t-16.5 -9t-20 -10.5t-20.5 -11q-104 -55 -162 -127q-86 -107 -86 -277zM252 291q0 84 35.5 151.5t107.5 98.5v-287q0 -29 -25 -48.5t-61 -19.5q-33 0 -47 43q-10 29 -10 62zM264 1305h160l162 184h-215z" />
|
||||||
|
<glyph unicode="â" horiz-adv-x="681" d="M49 260q0 -154 64 -225q41 -51 102 -51q60 0 109 39q35 28 57 67h14q0 -66 19 -90h202q-14 86 -14 195v688q0 109 -76 182q-75 72 -176 72q-120 0 -198 -88q-80 -90 -80 -211v-47h207v53q0 21 4 53q11 59 55 59q37 0 51 -34q6 -20 6 -68v-123q-2 -5 -5 -9.5t-9 -9.5 t-11.5 -8.5t-15.5 -9t-16.5 -9t-20 -10.5t-20.5 -11q-104 -55 -162 -127q-86 -107 -86 -277zM90 1305h189l61 71l63 -71h189l-141 184h-220zM252 291q0 84 35.5 151.5t107.5 98.5v-287q0 -29 -25 -48.5t-61 -19.5q-33 0 -47 43q-10 29 -10 62z" />
|
||||||
|
<glyph unicode="ã" horiz-adv-x="681" d="M49 260q0 -154 64 -225q41 -51 102 -51q60 0 109 39q35 28 57 67h14q0 -66 19 -90h202q-14 86 -14 195v688q0 109 -76 182q-75 72 -176 72q-120 0 -198 -88q-80 -90 -80 -211v-47h207v53q0 21 4 53q11 59 55 59q37 0 51 -34q6 -20 6 -68v-123q-2 -5 -5 -9.5t-9 -9.5 t-11.5 -8.5t-15.5 -9t-16.5 -9t-20 -10.5t-20.5 -11q-104 -55 -162 -127q-86 -107 -86 -277zM143 1305q6 3 17.5 8.5t15.5 7.5q46 16 76 16q51 -3 92 -20q43 -19 88 -19q20 0 41 7q44 11 68 32v152q-6 -3 -18 -8.5t-15 -7.5q-49 -17 -76 -17q-41 3 -90 23q-46 16 -90 16 q-23 0 -41 -6q-43 -14 -68 -33v-151zM252 291q0 84 35.5 151.5t107.5 98.5v-287q0 -29 -25 -48.5t-61 -19.5q-33 0 -47 43q-10 29 -10 62z" />
|
||||||
|
<glyph unicode="ä" horiz-adv-x="681" d="M49 260q0 -154 64 -225q41 -51 102 -51q60 0 109 39q35 28 57 67h14q0 -66 19 -90h202q-14 86 -14 195v688q0 109 -76 182q-75 72 -176 72q-120 0 -198 -88q-80 -90 -80 -211v-47h207v53q0 21 4 53q11 59 55 59q37 0 51 -34q6 -20 6 -68v-123q-2 -5 -5 -9.5t-9 -9.5 t-11.5 -8.5t-15.5 -9t-16.5 -9t-20 -10.5t-20.5 -11q-104 -55 -162 -127q-86 -107 -86 -277zM102 1305h191v200h-191v-200zM252 291q0 84 35.5 151.5t107.5 98.5v-287q0 -29 -25 -48.5t-61 -19.5q-33 0 -47 43q-10 29 -10 62zM391 1305h191v200h-191v-200z" />
|
||||||
|
<glyph unicode="å" horiz-adv-x="681" d="M49 260q0 -154 64 -225q41 -51 102 -51q60 0 109 39q35 28 57 67h14q0 -66 19 -90h202q-14 86 -14 195v688q0 109 -76 182q-75 72 -176 72q-120 0 -198 -88q-80 -90 -80 -211v-47h207v53q0 21 4 53q11 59 55 59q37 0 51 -34q6 -20 6 -68v-123q-2 -5 -5 -9.5t-9 -9.5 t-11.5 -8.5t-15.5 -9t-16.5 -9t-20 -10.5t-20.5 -11q-104 -55 -162 -127q-86 -107 -86 -277zM188 1421q0 -62 45 -102.5t109 -40.5t108 40.5t44 102.5t-44 103t-108 41t-109 -41t-45 -103zM252 291q0 84 35.5 151.5t107.5 98.5v-287q0 -29 -25 -48.5t-61 -19.5q-33 0 -47 43 q-10 29 -10 62zM266 1421q0 29 23 50.5t53 21.5t53 -21.5t23 -50.5t-23 -50t-53 -21t-53 21t-23 50z" />
|
||||||
|
<glyph unicode="æ" horiz-adv-x="989" d="M49 260q0 -154 64 -225q41 -51 102 -51q120 0 221 131q67 -131 226 -131q101 0 155 45q55 44 81.5 102t31.5 141v129h-193v-122q0 -37 -8 -58q-14 -55 -65 -55q-27 0 -43 16q-30 39 -33 97v243h342v326q-3 71 -33 143q-67 146 -233 146q-97 0 -162 -52q-67 52 -152 52 q-120 0 -198 -88q-80 -90 -80 -211v-47h207v53q0 21 4 53q11 59 55 59q37 0 51 -34q6 -20 6 -68v-123q-2 -5 -5 -9.5t-9 -9.5t-11.5 -8.5t-15.5 -9t-16.5 -9t-20 -10.5t-20.5 -11q-104 -55 -162 -127q-86 -107 -86 -277zM252 291q0 84 35.5 151.5t107.5 98.5v-287 q0 -29 -25 -48.5t-61 -19.5q-33 0 -47 43q-10 29 -10 62zM588 684v158q3 39 10 57q18 57 66 57q29 0 45 -16q28 -35 28 -98v-158h-149z" />
|
||||||
|
<glyph unicode="ç" horiz-adv-x="645" d="M66 315q0 -179 75 -260q65 -71 189 -71q136 0 198 67q68 74 68 254v109h-207v-156q0 -52 -12 -71t-47 -19q-26 0 -39.5 15.5t-16 32t-2.5 42.5v604q0 26 2.5 42.5t16 32t39.5 15.5q35 0 47 -19t12 -71v-135h207v88q0 180 -68 254q-62 68 -198 68q-123 0 -189 -72 q-75 -81 -75 -260v-490zM238 -111v-141h63l-41 -133h105l45 133v141h-172z" />
|
||||||
|
<glyph unicode="è" horiz-adv-x="659" d="M66 279q3 -78 32 -148q66 -147 234 -147q101 0 155 45q55 44 81.5 102t31.5 141v129h-192v-122q0 -34 -9 -58q-14 -55 -65 -55q-27 0 -43 16q-30 39 -33 97v243h342v326q-3 71 -33 143q-67 146 -233 146q-103 0 -154 -45q-105 -87 -114 -250v-563zM102 1489l162 -184h160 l-107 184h-215zM258 684v158q3 39 10 57q18 57 66 57q29 0 45 -16q29 -36 29 -98v-158h-150z" />
|
||||||
|
<glyph unicode="é" horiz-adv-x="659" d="M66 279q3 -78 32 -148q66 -147 234 -147q101 0 155 45q55 44 81.5 102t31.5 141v129h-192v-122q0 -34 -9 -58q-14 -55 -65 -55q-27 0 -43 16q-30 39 -33 97v243h342v326q-3 71 -33 143q-67 146 -233 146q-103 0 -154 -45q-105 -87 -114 -250v-563zM258 684v158 q3 39 10 57q18 57 66 57q29 0 45 -16q29 -36 29 -98v-158h-150zM264 1305h160l162 184h-215z" />
|
||||||
|
<glyph unicode="ê" horiz-adv-x="659" d="M66 279q3 -78 32 -148q66 -147 234 -147q101 0 155 45q55 44 81.5 102t31.5 141v129h-192v-122q0 -34 -9 -58q-14 -55 -65 -55q-27 0 -43 16q-30 39 -33 97v243h342v326q-3 71 -33 143q-67 146 -233 146q-103 0 -154 -45q-105 -87 -114 -250v-563zM80 1305h188l62 71 l63 -71h189l-142 184h-219zM258 684v158q3 39 10 57q18 57 66 57q29 0 45 -16q29 -36 29 -98v-158h-150z" />
|
||||||
|
<glyph unicode="ë" horiz-adv-x="659" d="M66 279q3 -78 32 -148q66 -147 234 -147q101 0 155 45q55 44 81.5 102t31.5 141v129h-192v-122q0 -34 -9 -58q-14 -55 -65 -55q-27 0 -43 16q-30 39 -33 97v243h342v326q-3 71 -33 143q-67 146 -233 146q-103 0 -154 -45q-105 -87 -114 -250v-563zM90 1305h191v200h-191 v-200zM258 684v158q3 39 10 57q18 57 66 57q29 0 45 -16q29 -36 29 -98v-158h-150zM379 1305h190v200h-190v-200z" />
|
||||||
|
<glyph unicode="ì" horiz-adv-x="370" d="M-33 1489l162 -184h160l-107 184h-215zM82 0h207v1120h-207v-1120z" />
|
||||||
|
<glyph unicode="í" horiz-adv-x="370" d="M82 0h207v1120h-207v-1120zM82 1305h160l161 184h-215z" />
|
||||||
|
<glyph unicode="î" horiz-adv-x="370" d="M-66 1305h189l61 71l64 -71h188l-141 184h-219zM82 0h207v1120h-207v-1120z" />
|
||||||
|
<glyph unicode="ï" horiz-adv-x="372" d="M-53 1305h190v200h-190v-200zM82 0h207v1120h-207v-1120zM236 1305h190v200h-190v-200z" />
|
||||||
|
<glyph unicode="ð" horiz-adv-x="673" d="M76 279q3 -76 33 -148q66 -147 231 -147q102 0 156 45q53 44 79 102t31 141v656q0 252 -125 446l101 88l-56 66l-94 -82l-18 24l-19 19q-3 3 -8 9t-8 9l-109 -100q2 -5 13 -16q7 -8 32 -50l-100 -88l55 -63l82 72q36 -81 51 -203q-91 78 -155 78q-113 0 -152 -123 q-20 -66 -20 -156v-579zM270 279v563q-3 33 6 57q15 57 64 57q29 0 45 -16q30 -37 27 -98v-563q3 -34 -6 -58q-14 -55 -66 -55q-27 0 -43 16q-30 38 -27 97z" />
|
||||||
|
<glyph unicode="ñ" horiz-adv-x="690" d="M82 0h207v883q6 10 18 26q27 27 49 27q50 0 50 -49v-887h206v918q0 81 -37 145q-45 74 -118 74q-27 0 -54 -15q-37 -20 -90 -73q-22 -22 -24 -23v94h-207v-1120zM147 1305q6 3 18 8.5t15 7.5q46 16 76 16q51 -3 92 -20q43 -19 88 -19q20 0 41 7q44 11 68 32v152 q-6 -3 -18 -8.5t-15 -7.5q-49 -17 -76 -17q-41 3 -90 23q-46 16 -90 16q-23 0 -41 -6q-43 -14 -68 -33v-151z" />
|
||||||
|
<glyph unicode="ò" horiz-adv-x="657" d="M63 279q3 -76 33 -148q66 -147 232 -147q101 0 155 45q54 44 80 102.5t31 140.5v576q-3 71 -33 143q-67 146 -233 146q-103 0 -154 -45q-102 -86 -111 -250v-563zM98 1489l162 -184h160l-107 184h-215zM258 279v563q-3 33 6 57q15 57 64 57q29 0 45 -16q29 -36 26 -98 v-563q3 -34 -6 -58q-14 -55 -65 -55q-27 0 -43 16q-30 38 -27 97z" />
|
||||||
|
<glyph unicode="ó" horiz-adv-x="657" d="M63 279q3 -76 33 -148q66 -147 232 -147q101 0 155 45q54 44 80 102.5t31 140.5v576q-3 71 -33 143q-67 146 -233 146q-103 0 -154 -45q-102 -86 -111 -250v-563zM258 279v563q-3 33 6 57q15 57 64 57q29 0 45 -16q29 -36 26 -98v-563q3 -34 -6 -58q-14 -55 -65 -55 q-27 0 -43 16q-30 38 -27 97zM260 1305h160l162 184h-215z" />
|
||||||
|
<glyph unicode="ô" horiz-adv-x="657" d="M63 279q3 -76 33 -148q66 -147 232 -147q101 0 155 45q54 44 80 102.5t31 140.5v576q-3 71 -33 143q-67 146 -233 146q-103 0 -154 -45q-102 -86 -111 -250v-563zM78 1305h188l62 71l63 -71h189l-142 184h-219zM258 279v563q-3 33 6 57q15 57 64 57q29 0 45 -16 q29 -36 26 -98v-563q3 -34 -6 -58q-14 -55 -65 -55q-27 0 -43 16q-30 38 -27 97z" />
|
||||||
|
<glyph unicode="õ" horiz-adv-x="657" d="M63 279q3 -76 33 -148q66 -147 232 -147q101 0 155 45q54 44 80 102.5t31 140.5v576q-3 71 -33 143q-67 146 -233 146q-103 0 -154 -45q-102 -86 -111 -250v-563zM131 1305q6 3 17.5 8.5t15.5 7.5q46 16 76 16q51 -3 92 -20q43 -19 88 -19q20 0 41 7q42 10 67 32v152 l-32 -16q-49 -17 -76 -17q-41 3 -90 23q-46 16 -90 16q-23 0 -41 -6q-43 -14 -68 -33v-151zM258 279v563q-3 33 6 57q15 57 64 57q29 0 45 -16q29 -36 26 -98v-563q3 -34 -6 -58q-14 -55 -65 -55q-27 0 -43 16q-30 38 -27 97z" />
|
||||||
|
<glyph unicode="ö" horiz-adv-x="657" d="M63 279q3 -76 33 -148q66 -147 232 -147q101 0 155 45q54 44 80 102.5t31 140.5v576q-3 71 -33 143q-67 146 -233 146q-103 0 -154 -45q-102 -86 -111 -250v-563zM90 1305h191v200h-191v-200zM258 279v563q-3 33 6 57q15 57 64 57q29 0 45 -16q29 -36 26 -98v-563 q3 -34 -6 -58q-14 -55 -65 -55q-27 0 -43 16q-30 38 -27 97zM379 1305h190v200h-190v-200z" />
|
||||||
|
<glyph unicode="ø" horiz-adv-x="657" d="M63 279q0 -37 11 -86q19 -92 82 -150l-31 -121h80l20 78q50 -16 103 -16q101 0 155 45q54 44 80 102.5t31 140.5v576q-3 44 -12 84q-29 96 -82 145l30 121h-75l-21 -80q-59 19 -106 19q-103 0 -154 -45q-102 -86 -111 -250v-563zM258 436v406q-3 33 6 57q15 57 64 57 q40 0 55 -34zM274 197l125 485v-403q3 -34 -6 -58q-14 -55 -65 -55q-38 0 -54 31z" />
|
||||||
|
<glyph unicode="ù" horiz-adv-x="690" d="M78 203q0 -83 37 -144q44 -75 118 -75q27 0 56 16q35 19 90 74q18 18 22 20v-94h207v1120h-207v-882q-13 -22 -18 -27q-27 -27 -49 -27q-23 0 -36 10t-13 39v887h-207v-917zM113 1489l161 -184h160l-106 184h-215z" />
|
||||||
|
<glyph unicode="ú" horiz-adv-x="690" d="M78 203q0 -83 37 -144q44 -75 118 -75q27 0 56 16q35 19 90 74q18 18 22 20v-94h207v1120h-207v-882q-13 -22 -18 -27q-27 -27 -49 -27q-23 0 -36 10t-13 39v887h-207v-917zM274 1305h160l162 184h-215z" />
|
||||||
|
<glyph unicode="û" horiz-adv-x="690" d="M78 203q0 -83 37 -144q44 -75 118 -75q27 0 56 16q35 19 90 74q18 18 22 20v-94h207v1120h-207v-882q-13 -22 -18 -27q-27 -27 -49 -27q-23 0 -36 10t-13 39v887h-207v-917zM94 1305h189l61 71l64 -71h188l-141 184h-219z" />
|
||||||
|
<glyph unicode="ü" horiz-adv-x="690" d="M78 203q0 -83 37 -144q44 -75 118 -75q27 0 56 16q35 19 90 74q18 18 22 20v-94h207v1120h-207v-882q-13 -22 -18 -27q-27 -27 -49 -27q-23 0 -36 10t-13 39v887h-207v-917zM106 1305h191v200h-191v-200zM395 1305h191v200h-191v-200z" />
|
||||||
|
<glyph unicode="ý" horiz-adv-x="634" d="M25 1120l190 -1153q0 -34 -8 -61q-18 -65 -68 -103q-21 -16 -55.5 -19t-38.5 1q-10 0 -12 2v-184q50 -4 67 -4h25q114 0 197 100q74 89 90 217l198 1204h-202l-82 -688l-4 -57h-9l-4 57l-82 688h-202zM231 1305h160l162 184h-215z" />
|
||||||
|
<glyph unicode="þ" horiz-adv-x="686" d="M82 -385h207v459q34 -30 53 -45q61 -45 111 -45q75 0 122 75q37 61 37 144v715q0 81 -37 145q-49 74 -122 74q-31 0 -58 -15q-50 -22 -106 -75v458h-207v-1890zM289 246v628q0 29 18.5 48.5t42.5 19.5q23 0 39.5 -19.5t16.5 -48.5v-628q0 -29 -16.5 -48.5t-39.5 -19.5 t-42 21.5t-19 46.5z" />
|
||||||
|
<glyph unicode="ÿ" horiz-adv-x="634" d="M25 1120l190 -1153q0 -34 -8 -61q-18 -65 -68 -103q-21 -16 -55.5 -19t-38.5 1q-10 0 -12 2v-184q50 -4 67 -4h25q114 0 197 100q74 89 90 217l198 1204h-202l-82 -688l-4 -57h-9l-4 57l-82 688h-202zM78 1305h190v200h-190v-200zM367 1305h190v200h-190v-200z" />
|
||||||
|
<glyph unicode="Œ" horiz-adv-x="983" d="M68 309q3 -91 36 -155q30 -66 86 -105q69 -49 172 -49h580v227h-285v414h205v242h-205v395h285v227h-580q-106 0 -172 -47q-54 -38 -86 -108q-33 -64 -36 -154v-887zM289 309v887q0 34 8 55q17 56 65 56q42 0 60 -37q14 -28 14 -60v-901q0 -36 -8 -55q-14 -55 -66 -55 q-27 0 -43 16q-30 35 -30 94z" />
|
||||||
|
<glyph unicode="œ" horiz-adv-x="995" d="M63 279q3 -76 33 -148q66 -147 232 -147q103 0 170 57q64 -57 170 -57q101 0 155 45q55 44 81.5 102t31.5 141v129h-193v-122q0 -37 -8 -58q-14 -55 -65 -55q-45 0 -64 47q-12 30 -12 59v250h342v326q-3 71 -33 143q-67 146 -233 146q-103 0 -170 -60q-67 60 -172 60 q-103 0 -154 -45q-102 -86 -111 -250v-563zM258 279v563q-3 33 6 57q15 57 64 57q29 0 45 -16q29 -36 26 -98v-563q3 -34 -6 -58q-14 -55 -65 -55q-27 0 -43 16q-30 38 -27 97zM594 684v164q0 31 12 61q19 47 64 47q29 0 45 -16q28 -35 28 -98v-158h-149z" />
|
||||||
|
<glyph unicode="Ÿ" horiz-adv-x="704" d="M16 1505l226 -864v-641h221v641l225 864h-217l-111 -481l-6 -14h-4l-6 14l-111 481h-217zM113 1638h190v201h-190v-201zM401 1638h191v201h-191v-201z" />
|
||||||
|
<glyph unicode="ˆ" horiz-adv-x="1021" d="M260 1305h189l61 71l63 -71h189l-141 184h-220z" />
|
||||||
|
<glyph unicode="˜" horiz-adv-x="1024" d="M313 1305q6 3 17.5 8.5t15.5 7.5q46 16 76 16q51 -3 92 -20q43 -19 88 -19q20 0 41 7q44 11 68 32v152q-6 -3 -17.5 -8.5t-15.5 -7.5q-49 -17 -76 -17q-41 3 -90 23q-46 16 -90 16q-23 0 -41 -6q-43 -14 -68 -33v-151z" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="952" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="1905" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="952" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="1905" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="635" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="476" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="317" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="317" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="238" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="381" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="105" />
|
||||||
|
<glyph unicode="‐" horiz-adv-x="444" d="M74 455h297v194h-297v-194z" />
|
||||||
|
<glyph unicode="‑" horiz-adv-x="444" d="M74 455h297v194h-297v-194z" />
|
||||||
|
<glyph unicode="‒" horiz-adv-x="444" d="M74 455h297v194h-297v-194z" />
|
||||||
|
<glyph unicode="–" horiz-adv-x="806" d="M74 649h659v195h-659v-195z" />
|
||||||
|
<glyph unicode="—" horiz-adv-x="972" d="M74 649h825v195h-825v-195z" />
|
||||||
|
<glyph unicode="‘" horiz-adv-x="309" d="M49 1012h215v227h-71l71 266h-102l-113 -266v-227z" />
|
||||||
|
<glyph unicode="’" horiz-adv-x="309" d="M45 1012h102l113 266v227h-215v-227h72z" />
|
||||||
|
<glyph unicode="‚" horiz-adv-x="309" d="M45 0h72l-72 -266h102l113 266v227h-215v-227z" />
|
||||||
|
<glyph unicode="“" horiz-adv-x="624" d="M53 1012h215v227h-71l71 266h-102l-113 -266v-227zM356 1012h215v227h-71l71 266h-102l-113 -266v-227z" />
|
||||||
|
<glyph unicode="”" horiz-adv-x="624" d="M53 1012h103l112 266v227h-215v-227h72zM356 1012h103l112 266v227h-215v-227h72z" />
|
||||||
|
<glyph unicode="„" horiz-adv-x="624" d="M53 0h72l-72 -266h103l112 266v227h-215v-227zM356 0h72l-72 -266h103l112 266v227h-215v-227z" />
|
||||||
|
<glyph unicode="•" horiz-adv-x="663" d="M82 817q0 -104 74 -178t178 -74q102 0 176 74q72 72 72 178q0 104 -72 176t-176 72q-106 0 -178 -72q-74 -74 -74 -176z" />
|
||||||
|
<glyph unicode="…" horiz-adv-x="964" d="M53 0h215v227h-215v-227zM375 0h215v227h-215v-227zM696 0h215v227h-215v-227z" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="381" />
|
||||||
|
<glyph unicode=" " horiz-adv-x="476" />
|
||||||
|
<glyph unicode="€" horiz-adv-x="813" d="M53 547h107v-238q3 -95 37 -164q30 -67 86 -110q63 -51 172 -51q107 0 170 51q59 45 88 110q34 69 37 164v84h-207v-84q0 -36 -8 -55q-18 -55 -76 -55q-27 0 -43 16q-32 37 -35 94v238h233v137h-233v137h233v137h-233v238q4 39 10 55q21 56 68 56q34 0 51 -17 q33 -36 33 -94v-84h207v84q-3 93 -37 162q-30 68 -88 112q-69 52 -170 52q-103 0 -172 -52q-55 -42 -86 -112q-34 -69 -37 -162v-238h-107v-137h107v-137h-107v-137z" />
|
||||||
|
<glyph unicode="™" horiz-adv-x="937" d="M74 1401h104v-580h113v580h104v104h-321v-104zM440 821h103v449l80 -449h51l78 449v-449h104v684h-137l-68 -319h-6l-67 319h-138v-684z" />
|
||||||
|
<glyph unicode="" horiz-adv-x="1116" d="M0 0v1116h1116v-1116h-1116z" />
|
||||||
|
<glyph unicode="fi" horiz-adv-x="772" d="M20 934h105v-934h207v934h151v-934h207v1120h-358v29v51q0 35 8 62q18 71 76 71q28 0 82 -6q20 -4 28 -6v184q-7 1 -22.5 3t-22.5 3q-40 9 -102 9q-167 0 -223 -140q-31 -73 -31 -229v-31h-105v-186z" />
|
||||||
|
<glyph unicode="fl" horiz-adv-x="772" d="M20 934h105v-934h207v934h104v186h-104v29v51q0 35 8 62q18 71 76 71q31 0 67 -4v-1329h207v1505h-164q-7 1 -22.5 3t-22.5 3q-40 9 -102 9q-167 0 -223 -140q-31 -73 -31 -229v-31h-105v-186z" />
|
||||||
|
</font>
|
||||||
|
</defs></svg>
|
||||||
|
After Width: | Height: | Size: 48 KiB |
BIN
public/bitpresenze/css/leaguegothic-regular-webfont.ttf
Normal file
BIN
public/bitpresenze/css/leaguegothic-regular-webfont.woff
Normal file
4
public/bitpresenze/css/style.css
Normal file
BIN
public/bitpresenze/images/come_funziona.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
public/bitpresenze/images/come_funziona2.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
public/bitpresenze/images/como funcionatrans.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
public/bitpresenze/images/como_funciona-modified.png
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
public/bitpresenze/images/como_funciona.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
public/bitpresenze/images/como_funciona1.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
public/bitpresenze/images/como_funciona2.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
public/bitpresenze/images/cont_ind.png
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
public/bitpresenze/images/contatti.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
public/bitpresenze/images/dashboard.png
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
public/bitpresenze/images/funciona.png
Normal file
|
After Width: | Height: | Size: 29 KiB |