From abda65dc5e2ee8fa7360c89966d573de5df68424 Mon Sep 17 00:00:00 2001 From: Jos Poortvliet Date: Mon, 21 Oct 2019 12:14:24 +0200 Subject: [PATCH 1/2] first version Signed-off-by: Jos Poortvliet --- assets/css/pages/customerstories.css | 152 +++++++++ assets/css/pages/customerstories.scss | 127 +++++++ page-customerstories.php | 472 ++++++++++++++++++++++++++ 3 files changed, 751 insertions(+) create mode 100644 assets/css/pages/customerstories.css create mode 100644 assets/css/pages/customerstories.scss create mode 100644 page-customerstories.php diff --git a/assets/css/pages/customerstories.css b/assets/css/pages/customerstories.css new file mode 100644 index 000000000..d31e555e8 --- /dev/null +++ b/assets/css/pages/customerstories.css @@ -0,0 +1,152 @@ +/*Colors*/ +/*Shadows*/ +/*Breakpoints*/ +/* New widest container for headers */ +.container-widest { + max-width: 1800px; + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} +@media (min-width: 768px) { + .container-widest .container-widest { + width: 738px; + } +} +@media (min-width: 992px) { + .container-widest .container-widest { + width: 962px; + } +} +@media (min-width: 1200px) { + .container-widest .container-widest { + width: 1170px; + } +} +@media (min-width: 1500px) { + .container-widest .container-widest { + width: 1470px; + } +} +@media (min-width: 1800px) { + .container-widest .container-widest { + width: 1770px; + } +} + +/* Make Navbar transparent */ +.nav:not(.scrolled) { + background-color: transparent; + position: absolute; +} + +.files-background { + background: url("../../img/headers/yourcloud.jpg") no-repeat; + background-position: center; + background-size: cover; +} + +section { + margin: 180px 0; +} + +.section--customers { + position: relative; +} +.section--customers .section--paragraph { + margin: 40px 0; +} +.section--customers .row { + margin-top: 50px; +} +.section--customers .customer { + position: relative; + padding-left: 10px; + padding-right: 10px; +} +.section--customers .customer .customer-logo { + padding-left: 10px; + padding-right: 10px; + max-width: 250px; + float: center; + position: relative; + text-align: center; + margin-left: auto; + margin-right: auto; + vertical-align: middle; +} +.section--customers .customer .customer-logo a img:hover { + -webkit-filter: saturate(0%) contrast(0.35) brightness(130%); + filter: saturate(0%) contrast(0.35) brightness(130%); +} + +.section--on-premise .section--heading-1 { + padding-bottom: 30px; +} + +.acess__anywhere { + width: 400px; + margin: 0 auto; +} + +.section--files { + padding-top: 80px; +} + +.section--whitepaper { + padding: 0; +} +.section--whitepaper h2 { + line-height: normal; +} + +.section--outlook h1 { + /*margin-bottom: 10px;*/ +} +.section--outlook p { + padding: 10px 0 30px 0; +} +.section--outlook .row { + padding-bottom: 10px; +} + +.section--others { + margin: 0 0 0 0; + padding: 90px 0 70px 0; + background-color: #eee; +} +.section--others .row { + margin-bottom: 10px; +} +.section--others img { + padding: 20px; +} + +.section--more .container-widest .row { + margin-left: 5px; + margin-right: 5px; +} +.section--more .section--heading-1 { + padding-bottom: 60px; +} +.section--more i[class*=fa-] { + font-size: 60px; + display: block; + color: #0082c9; + text-align: center; + padding-top: 20%; +} + +.section--getstarted { + margin-bottom: 0px; +} +.section--getstarted a { + margin: 50px; +} + +footer { + margin-top: 0px; +} + +/*# sourceMappingURL=customerstories.css.map */ diff --git a/assets/css/pages/customerstories.scss b/assets/css/pages/customerstories.scss new file mode 100644 index 000000000..257f821ae --- /dev/null +++ b/assets/css/pages/customerstories.scss @@ -0,0 +1,127 @@ +@import '../variables'; +@import '../modules/transparent-navbar'; + + +.files-background { + background: url('../../img/headers/yourcloud.jpg') no-repeat; + background-position: center; + background-size: cover; +} + +section { + margin: 180px 0; +} + +.section--customers { + position: relative; + .section--paragraph { + margin: 40px 0; + } + + .container { + } + .row { + margin-top: 50px; + } + .customer { + position: relative; + padding-left: 10px; + padding-right: 10px; + .customer-logo { + padding-left: 10px; + padding-right: 10px; + max-width: 250px; + float: center; + position: relative; + text-align: center; + margin-left: auto; + margin-right: auto; + vertical-align: middle; + a img { + &:hover { + -webkit-filter: saturate(0%) contrast(.35) brightness(130%); + filter: saturate(0%) contrast(.35) brightness(130%); + } + } + } + + } +} + +.section--on-premise { + .section--heading-1 { + padding-bottom: 30px; + } +} + +.acess__anywhere { + width: 400px; + margin: 0 auto; +} + +.section--files { + padding-top: 80px; +} + +.section--whitepaper { + padding: 0; + + h2 { + line-height: normal; + } +} + +.section--outlook { + h1 { + /*margin-bottom: 10px;*/ + } + p { + padding: 10px 0 30px 0; + } + .row { + padding-bottom: 10px; + } +} + + +.section--others { + margin: 0 0 0 0; + padding: 90px 0 70px 0; + background-color: #eee; + .row { + margin-bottom: 10px; + } + img { + padding: 20px; + } +} + +.section--more { + .container-widest .row { + margin-left: 5px; + margin-right: 5px; + } + + .section--heading-1 { + padding-bottom: 60px; + } + + i[class*='fa-'] { + font-size: 60px; + display: block; + color: #0082c9; + text-align: center; + padding-top: 20%; + } +} + +.section--getstarted { + margin-bottom: 0px; + a { + margin: 50px; + } +} + +footer { + margin-top: 0px; +} diff --git a/page-customerstories.php b/page-customerstories.php new file mode 100644 index 000000000..0db99de14 --- /dev/null +++ b/page-customerstories.php @@ -0,0 +1,472 @@ + + + + +
+
+
+
+

t('Customer stories');?>

+

t('Why Nextcloud was a great solution for them');?>

+
+
+
+
+ +
+
+
+
+

t('Powering collaboration');?>

+

t('Thousands of modern organizations secure data and improve productivity with Nextcloud Files, enabling tens of millions of customers and employees to collaborate seamlessly across divisions and over company borders.');?>

+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ + +
+
+
+
+ elkb logo +
+
+

t('Nextcloud offers collaboration solution to Evangelisch-Lutherische Kirche in Bayern');?>

+
t('We deployed Nextcloud with Collabora some months ago. We are very happy with the user-acceptance of the sync&share function and hope to expand on Collabora usage as part of our plans to make Nextcloud a core component of our digital-workspace initiative.');?>
+ - Bartel Pieterse, Fachbereichsleiter Kommunikation & Kollaboration (KIV), ELKB +
+
+
+
+ +
+
+
+
+ SCM picture +
+
+

t('Nextcloud Talk offering secure corporate messaging for SCM LIMITED');?>

+

t('When SCM was looking for a simple, secure and well designed messenger platform that could be hosted on-premises, a decision was made for Nextcloud Talk. A Professional Services project from Nextcloud GmbH provided several features SCM required and today, the legal, human resource, financial and PR experts of SCM can easily communicate and collaborate during their business trips.');?>

+ t('Read the blog');?> +
+
+
+
+ +
+
+
+
+ in action +
+
+

t('Capital of Switzerland provides Nextcloud to 35.000 students and teachers');?>

+
t('the largest open source order ever in Switzerland!');?>
+

t('-- Matthias Stürmer, EPP city councillor');?>

+ t('Announcement blog');?> +
+
+
+
+ +
+
+
+
+

t('How the TU Berlin delivers file sync and share to 22.000 users');?>

+
"> +

+
+
+ + + + +

+
+
+
+ +
+
+ +
+
+
+
+
+ in action +
+
+

t('regio IT offers ucloud4schools');?>

+

t('In February 2017 regio IT migrated 3000 users to Nextcloud, delivering secure online file exchange and collaboration.');?>

+

t('Today, regio iT is managing about 50.000 users, of which over 1000 using Collabora Online for online office, at hundreds of schools in Germany.');?>

+ t('blog about initial migration');?> +
+
+
+
+ +
+
+
+7
+

t('Case Study: North-West University');?>

+
"> +

+
+
+ + + + +

+
+
+
+ +
+
+ +
+
+
+
+ in action +
+
+

t('Zenuity - reshaping autonomous driving');?>

+

t('Zenuity deployed Nextcloud for the purpose of safe and effective collaboration with our partner companies. We selected the product after comparing against several other alternatives. Particular advantages are the ability to run the service on premises and the good support for a wide range of client operating systems.');?>

+
+
+
+
+ +
+
+
+
+ in action +
+
+

t('Raiffeisen and Hypo Banks in Austria');?>

+

t('Raiffeisen Informatik Center Steiermark provides the whole IT-Infrastructure as well as all financial applications for both Raiffeisen and Hypo Banks in Styria/Austria. As one of the largest IT companies in the Southern Region of Austria, they chose to provide Nextcloud to their employees because it has the most user-friendly (web) interface, meets their strict security requirements and is scalable and extensible.');?>

+ t('Read the blog');?> +
+
+
+
+ +
+
+
+
+ in action +
+
+

t('Assicuro Private Insurance');?>

+

t('Assicuro chose Nextcloud to ensure confidential data exchange with its over 3000 customers and partners, enabling customers to securily share confidential information e.g. insurance policies. Compared to other evaluated solutions, Nextcloud offered an easier user interface, and a professional and more secure, extensible platform.');?>

+
+
+
+
+ + +
+
+
+
+ in action +
+
+

t('German Federal Government, ITZBund');?>

+

t('Nextcloud provides users with a modern, easy-to-use and productivity-oriented solution that enables efficient online and mobile collaboration and communication. ITZBund now provides an on-premises open source solution from a German provider to keep control over their own data.');?>

+ Learn more +
+
+
+
+ +
+
+
+
+
t('The need for Sweden as a country to have control over its information and the consequences of not having access to the information should be considered from the perspective of national security and sovereignty. In an international crisis or conflict, the willingness and ability of other countries to access, manipulate or deny access to information handled by a service provider should be considered.');?>
+

t('-- Swedish National Procurement Services');?>

+
+
+

t('Sweden deploying Nextcloud');?>

+
The uncertainty about how the public sector may use cloud services creates problems
+

Said Försäkringskassans cto, Mikael Norberg

+

t('Försäkringskassan is working on developing user functionality for such things as file storing internal messaging services, end-to-end encrypted and self hosted.');?>

+ t('Learn more (Swedish)');?> +
+
+
+
+ +
+
+
+
+
+ in action +
+
+

t('The capital of Albania moves to Nextcloud');?>

+
t('The best choice among similar products considered to address the needs of more than 600 employees of the municipality for secure file sharing and different applications like the Collabora Online tools, the Calendar, the Chat app, the mobile client(s) and more apps of the Nextcloud ecosystem.');?>
+

t('-- the IT department');?>

+ t('Read the blog');?> +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+
+

t('Get started now');?>

+

t('Try out Nextcloud server for FREE or get a quote');?>

+ +
+
From 0d9b387e9df6953238b482093a7979fdbeb2ba6c Mon Sep 17 00:00:00 2001 From: Jos Poortvliet Date: Mon, 21 Oct 2019 22:23:54 +0200 Subject: [PATCH 2/2] prepare so that Marinela can take over Signed-off-by: Jos Poortvliet --- assets/css/pages/customerstories.css | 48 +++++ assets/css/pages/customerstories.scss | 53 ++++++ assets/img/customers/kas.png | Bin 0 -> 5768 bytes page-customerstories.php | 241 +++++++------------------- 4 files changed, 161 insertions(+), 181 deletions(-) create mode 100644 assets/img/customers/kas.png diff --git a/assets/css/pages/customerstories.css b/assets/css/pages/customerstories.css index d31e555e8..8841b2c94 100644 --- a/assets/css/pages/customerstories.css +++ b/assets/css/pages/customerstories.css @@ -81,6 +81,54 @@ section { filter: saturate(0%) contrast(0.35) brightness(130%); } +.section--customerdetail .section--intro { + margin-top: 30px; + margin-bottom: 80px; +} +.section--customerdetail .box { + box-shadow: 0 0 1px rgba(39, 44, 49, 0.1), 0 3px 16px rgba(39, 44, 49, 0.07); + transition: all 0.5s ease; + background: white; + border-radius: 10px 10px 0 0; + margin: 20px; + padding: 0px; + /* &:hover { + box-shadow: 8px 14px 38px rgba(39,44,49,.06), 1px 3px 8px rgba(39,44,49,.03); + transition: all .3s ease; + transform: translate3D(0,-1px,0); + }*/ +} +.section--customerdetail .box .box--image { + width: 100%; + height: 300px; + /* background-color: #C4E1F7; */ + border-radius: 10px 10px 0 0; + background-size: cover; + background-position: center !important; + background-repeat: no-repeat !important; +} +.section--customerdetail .box .box--content { + padding: 5px 10px 10px 10px; +} +.section--customerdetail .box .box--content .box--content--title { + margin-top: 0px; + display: block; + font-size: 21px; + line-height: 1; + padding: 3px; + text-align: left; +} +.section--customerdetail .box .box--content .box--content--title :hover { + color: #337ab7; + text-decoration: underline solid #337ab7; +} +.section--customerdetail .box .box--content .box--content--text { + font-size: 12px; + padding: 3px; + text-align: left; + font-style: normal; +} + .section--on-premise .section--heading-1 { padding-bottom: 30px; } diff --git a/assets/css/pages/customerstories.scss b/assets/css/pages/customerstories.scss index 257f821ae..49a8bc070 100644 --- a/assets/css/pages/customerstories.scss +++ b/assets/css/pages/customerstories.scss @@ -48,6 +48,59 @@ section { } } +.section--customerdetail { + .section--intro { + margin-top: 30px; + margin-bottom: 80px; + } + + .box { + box-shadow: 0 0 1px rgba(39,44,49,.1), 0 3px 16px rgba(39,44,49,.07); + transition: all .5s ease; + background: white; + border-radius: 10px 10px 0 0; + margin: 20px; + padding: 0px; + +/* &:hover { + box-shadow: 8px 14px 38px rgba(39,44,49,.06), 1px 3px 8px rgba(39,44,49,.03); + transition: all .3s ease; + transform: translate3D(0,-1px,0); + }*/ + .box--image { + width: 100%; + height: 300px; +/* background-color: #C4E1F7; */ + border-radius: 10px 10px 0 0; + background-size: cover; + background-position: center !important; + background-repeat: no-repeat !important; + } + .box--content { + padding: 5px 10px 10px 10px; + + .box--content--title { + margin-top: 0px; + display: block; + font-size: 21px; + line-height: 1; + padding: 3px; + text-align: left; + :hover { + color: #337ab7; + text-decoration: underline solid #337ab7; + } + } + .box--content--text { + font-size: 12px; + padding: 3px; + text-align: left; + font-style: normal; + } + } + } +} + .section--on-premise { .section--heading-1 { padding-bottom: 30px; diff --git a/assets/img/customers/kas.png b/assets/img/customers/kas.png new file mode 100644 index 0000000000000000000000000000000000000000..c3b7dd2a5ef7fc1d77d51989eaf8220aacaf1cd2 GIT binary patch literal 5768 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

t('Powering collaboration');?>

-

t('Thousands of modern organizations secure data and improve productivity with Nextcloud Files, enabling tens of millions of customers and employees to collaborate seamlessly across divisions and over company borders.');?>

+

t('Over 300 modern organizations secure data and improve productivity with the help of Nextcloud GmbH. Find some of them and their stories below.');?>

-
+
@@ -145,7 +145,7 @@
@@ -157,12 +157,12 @@
@@ -219,238 +219,117 @@
-
-
- elkb logo -
-
-

t('Nextcloud offers collaboration solution to Evangelisch-Lutherische Kirche in Bayern');?>

-
t('We deployed Nextcloud with Collabora some months ago. We are very happy with the user-acceptance of the sync&share function and hope to expand on Collabora usage as part of our plans to make Nextcloud a core component of our digital-workspace initiative.');?>
- - Bartel Pieterse, Fachbereichsleiter Kommunikation & Kollaboration (KIV), ELKB +
+

t('Case studies');?>

+
+

t('In various case studies, we give an in-depth overview of how Nextcloud helped a customer face the challenge of enabling team productivity.');?>

-
-
- -
-
-
-
- SCM picture -
-
-

t('Nextcloud Talk offering secure corporate messaging for SCM LIMITED');?>

-

t('When SCM was looking for a simple, secure and well designed messenger platform that could be hosted on-premises, a decision was made for Nextcloud Talk. A Professional Services project from Nextcloud GmbH provided several features SCM required and today, the legal, human resource, financial and PR experts of SCM can easily communicate and collaborate during their business trips.');?>

- t('Read the blog');?> +
+ +
+
+

t('Blogs');?>

+
+

t('Through interviews and discussions with our customers, we detail their use of Nextcloud in a blog post.');?>

-
-
+
+ +
+ -
-
-
-
- in action + +
+
+
+
+
+
+

t('Nextcloud offers collaboration solution to Evangelisch-Lutherische Kirche in Bayern');?>

+
+
+
t('We deployed Nextcloud with Collabora some months ago. We are very happy with the user-acceptance of the sync&share function and hope to expand on Collabora usage as part of our plans to make Nextcloud a core component of our digital-workspace initiative.');?>
+ - Bartel Pieterse, Fachbereichsleiter Kommunikation & Kollaboration (KIV), ELKB +
+
+
+
+
+
+
+
+
+
+

t('Nextcloud Talk offering secure corporate messaging for SCM LIMITED');?>

+
+
+

t('When SCM was looking for a simple, secure and well designed messenger platform that could be hosted on-premises, a decision was made for Nextcloud Talk. A Professional Services project from Nextcloud GmbH provided several features SCM required and today, the legal, human resource, financial and PR experts of SCM can easily communicate and collaborate during their business trips.');?>

+ t('Read the blog');?> +
+
+
-
+ +
+ in action

t('Capital of Switzerland provides Nextcloud to 35.000 students and teachers');?>

t('the largest open source order ever in Switzerland!');?>

t('-- Matthias Stürmer, EPP city councillor');?>

t('Announcement blog');?>
-
-
-
- -
-
-
-
-

t('How the TU Berlin delivers file sync and share to 22.000 users');?>

-
"> -

-
-
- - - - -

-
-
-
- -
-
- -
-
-
-
-
- in action -
-
+
+ in action

t('regio IT offers ucloud4schools');?>

t('In February 2017 regio IT migrated 3000 users to Nextcloud, delivering secure online file exchange and collaboration.');?>

t('Today, regio iT is managing about 50.000 users, of which over 1000 using Collabora Online for online office, at hundreds of schools in Germany.');?>

t('blog about initial migration');?>
-
-
-
- -
-
-
-7
-

t('Case Study: North-West University');?>

-
"> -

-
-
- - - - -

-
-
-
- -
-
- -
-
-
- in action -
-
+ Zenuity logo

t('Zenuity - reshaping autonomous driving');?>

t('Zenuity deployed Nextcloud for the purpose of safe and effective collaboration with our partner companies. We selected the product after comparing against several other alternatives. Particular advantages are the ability to run the service on premises and the good support for a wide range of client operating systems.');?>

-
-
-
- -
-
-
- in action -
-
+ Raiffeisen logo

t('Raiffeisen and Hypo Banks in Austria');?>

t('Raiffeisen Informatik Center Steiermark provides the whole IT-Infrastructure as well as all financial applications for both Raiffeisen and Hypo Banks in Styria/Austria. As one of the largest IT companies in the Southern Region of Austria, they chose to provide Nextcloud to their employees because it has the most user-friendly (web) interface, meets their strict security requirements and is scalable and extensible.');?>

t('Read the blog');?>
-
-
-
- -
-
-
in action -
-

t('Assicuro Private Insurance');?>

t('Assicuro chose Nextcloud to ensure confidential data exchange with its over 3000 customers and partners, enabling customers to securily share confidential information e.g. insurance policies. Compared to other evaluated solutions, Nextcloud offered an easier user interface, and a professional and more secure, extensible platform.');?>

-
-
-
- - -
-
-
in action -
-

t('German Federal Government, ITZBund');?>

t('Nextcloud provides users with a modern, easy-to-use and productivity-oriented solution that enables efficient online and mobile collaboration and communication. ITZBund now provides an on-premises open source solution from a German provider to keep control over their own data.');?>

Learn more
-
-
-
- -
-
-
t('The need for Sweden as a country to have control over its information and the consequences of not having access to the information should be considered from the perspective of national security and sovereignty. In an international crisis or conflict, the willingness and ability of other countries to access, manipulate or deny access to information handled by a service provider should be considered.');?>

t('-- Swedish National Procurement Services');?>

-
-

t('Sweden deploying Nextcloud');?>

The uncertainty about how the public sector may use cloud services creates problems

Said Försäkringskassans cto, Mikael Norberg

t('Försäkringskassan is working on developing user functionality for such things as file storing internal messaging services, end-to-end encrypted and self hosted.');?>

t('Learn more (Swedish)');?>
-
-
-
- -
-
-
-
-
- in action -
-
+
+ in action

t('The capital of Albania moves to Nextcloud');?>

t('The best choice among similar products considered to address the needs of more than 600 employees of the municipality for secure file sharing and different applications like the Collabora Online tools, the Calendar, the Chat app, the mobile client(s) and more apps of the Nextcloud ecosystem.');?>

t('-- the IT department');?>

t('Read the blog');?>
+
- - - - - - - - - - - - - - - - -