Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bladify About #2830

Merged
merged 1 commit into from
Apr 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 5 additions & 54 deletions www/about.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,60 +3,11 @@
// Copyright 2020 Catchpoint Systems Inc.
// Use of this source code is governed by the Polyform Shield 1.0.0 license that can be
// found in the LICENSE.md file.
include 'common.inc';
$page_keywords = array('About', 'Contact', 'WebPageTest', 'Website Speed Test', 'Page Speed');
$page_description = "More information about WebPageTest website speed testing and how to contact us.";
?>
<!DOCTYPE html>
<html lang="en-us">

<head>
<title>WebPageTest - About</title>
<meta http-equiv="charset" content="iso-8859-1">
<meta name="keywords" content="Performance, Optimization, Pagetest, Page Design, performance site web, internet performance, website performance, web applications testing, web application performance, Internet Tools, Web Development, Open Source, http viewer, debugger, http sniffer, ssl, monitor, http header, http header viewer">
<meta name="description" content="Speed up the performance of your web pages with an automated analysis">
<?php include('head.inc'); ?>
</head>

<body class="about">
<?php
$tab = 'About';
include 'header.inc';
?>
<div class="about">
<h1>About WebPageTest</h1>
<div class="box">
<p>Building high quality web experiences for users is at the core of all our efforts. With WebPageTest,
we strive to provide performance products and resources to our global and growing community of developers,
third-party platforms, technical consultants and others. WebPage as a tool was originally developed by
Patrick Meenan while he was at AOL for use internally and was open-sourced in 2008 under a BSD license.
The online version at <a href="https://www.webpagetest.org/">www.webpagetest.org</a> is run for the benefit
of the performance community.</p>

<p>WebPageTest was acquired in September of 2020 by <a href="https://www.catchpoint.com/">Catchpoint</a>, the leading Digital Experience Monitoring
platform providing <a href="https://www.catchpoint.com/guide-to-synthetic-monitoring">Synthetic Monitoring</a>, Real User Measurement, Network Monitoring, and Endpoint Monitoring products.</p>

<p>The acquisition starts a new and exciting chapter as we plan to expand WebPageTest’s capabilities and WebPageTest.org’s
geographical performance testing footprint, leveraging Catchpoint’s best-in-class infrastructure, adding capacity and
improving consistency and quality of analytics. You can read more about Catchpoint’s acquisition of
WebPageTest <a href="https://www.catchpoint.com/webpagetest-joins-catchpoint">here</a>.
<p>

<p>The WebPageTest code is free to use under the Polyform Shield license, a source-available license. As
long as you are not creating a product or service that competes with Catchpoint’s offerings then you
are free to do whatever you like with the WebPageTest code, including using it for your own internal
use or creating non-competing commercial products from it. In fact, we encourage using the WebPageTest
code to build your own value-added applications. Read
more <a href="https://github.com/WPO-Foundation/webpagetest/blob/master/LICENSE_FAQ.md">here</a>.</p>

<p>If you are having any problems or just have questions about the site, please feel free to
<a href="https://www.product.webpagetest.org/contact">contact us</a>. If you are considering sending advertising opportunities,
SEO/SEM solicitations, link sharing, etc....don't. We won't respond and will mark it as spam.
</p>
</div>
</div>
<?php include('footer.inc'); ?>
</div>
</body>

</html>
require_once __DIR__ . '/common.inc';
echo view('pages.about', [
'page_title' => 'WebPageTest - About',
'body_class' => 'about',
]);
38 changes: 38 additions & 0 deletions www/resources/views/pages/about.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
@extends('default')

@section('content')

<div class="about">
<h1>About WebPageTest</h1>
<div class="box">
<p>Building high quality web experiences for users is at the core of all our efforts. With WebPageTest,
we strive to provide performance products and resources to our global and growing community of developers,
third-party platforms, technical consultants and others. WebPage as a tool was originally developed by
Patrick Meenan while he was at AOL for use internally and was open-sourced in 2008 under a BSD license.
The online version at <a href="https://www.webpagetest.org/">www.webpagetest.org</a> is run for the benefit
of the performance community.</p>

<p>WebPageTest was acquired in September of 2020 by <a href="https://www.catchpoint.com/">Catchpoint</a>, the leading Digital Experience Monitoring
platform providing <a href="https://www.catchpoint.com/guide-to-synthetic-monitoring">Synthetic Monitoring</a>, Real User Measurement, Network Monitoring, and Endpoint Monitoring products.</p>

<p>The acquisition starts a new and exciting chapter as we plan to expand WebPageTest's capabilities and WebPageTest.org's
geographical performance testing footprint, leveraging Catchpoint's best-in-class infrastructure, adding capacity and
improving consistency and quality of analytics. You can read more about Catchpoint's acquisition of
WebPageTest <a href="https://www.catchpoint.com/webpagetest-joins-catchpoint">here</a>.
<p>

<p>The WebPageTest code is free to use under the Polyform Shield license, a source-available license. As
long as you are not creating a product or service that competes with Catchpoint's offerings then you
are free to do whatever you like with the WebPageTest code, including using it for your own internal
use or creating non-competing commercial products from it. In fact, we encourage using the WebPageTest
code to build your own value-added applications. Read
more <a href="https://github.com/WPO-Foundation/webpagetest/blob/master/LICENSE_FAQ.md">here</a>.</p>

<p>If you are having any problems or just have questions about the site, please feel free to
<a href="https://www.product.webpagetest.org/contact">contact us</a>. If you are considering sending advertising opportunities,
SEO/SEM solicitations, link sharing, etc....don't. We won't respond and will mark it as spam.
</p>
</div>
</div>

@endsection