Rename templates
|
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 95 KiB |
@ -0,0 +1,4 @@
|
||||
LICENSE
|
||||
-------
|
||||
|
||||
CC-BY-SA - https://creativecommons.org/licenses/by/4.0/
|
||||
@ -0,0 +1 @@
|
||||
CC-BY-SA - https://creativecommons.org/licenses/by/4.0/
|
||||
@ -1,4 +1,5 @@
|
||||
<?php
|
||||
// File generated to wrap the alias page - DO NOT MODIFY - It is just a wrapper to real page
|
||||
global $dolibarr_main_data_root;
|
||||
if (empty($dolibarr_main_data_root)) require './page149.tpl.php'; else require $dolibarr_main_data_root.'/website/'.$website->ref.'/page149.tpl.php';
|
||||
if (empty($dolibarr_main_data_root)) require './page202.tpl.php'; else require $dolibarr_main_data_root.'/website/'.$website->ref.'/page202.tpl.php';
|
||||
?>
|
||||
@ -0,0 +1,315 @@
|
||||
<?php // BEGIN PHP
|
||||
$websitekey=basename(__DIR__); if (empty($websitepagefile)) $websitepagefile=__FILE__;
|
||||
if (! defined('USEDOLIBARRSERVER') && ! defined('USEDOLIBARREDITOR')) {
|
||||
$pathdepth = count(explode('/', $_SERVER['SCRIPT_NAME'])) - 2;
|
||||
require_once ($pathdepth ? str_repeat('../', $pathdepth) : './').'master.inc.php';
|
||||
} // Not already loaded
|
||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/website.lib.php';
|
||||
require_once DOL_DOCUMENT_ROOT.'/core/website.inc.php';
|
||||
ob_start();
|
||||
// END PHP ?>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Home page</title>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="title" content="Home page" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="generator" content="Dolibarr 17.0.0-alpha (https://www.dolibarr.org)" />
|
||||
<meta name="dolibarr:pageid" content="202" />
|
||||
<?php if ($website->use_manifest) { print '<link rel="manifest" href="/manifest.json.php" />'."\n"; } ?>
|
||||
<!-- Include link to CSS file -->
|
||||
<link rel="stylesheet" href="/styles.css.php?website=<?php echo $websitekey; ?>" type="text/css" />
|
||||
<!-- Include link to JS file -->
|
||||
<script async src="/javascript.js.php"></script>
|
||||
<!-- Include HTML header from common file -->
|
||||
<?php if (file_exists(DOL_DATA_ROOT."/website/".$websitekey."/htmlheader.html")) include DOL_DATA_ROOT."/website/".$websitekey."/htmlheader.html"; ?>
|
||||
<!-- Include HTML header from page header block -->
|
||||
<script
|
||||
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
|
||||
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
|
||||
crossorigin="anonymous"
|
||||
></script>
|
||||
</head>
|
||||
<!-- File generated by Dolibarr website module editor -->
|
||||
<body id="bodywebsite" class="bodywebsite bodywebpage-index">
|
||||
<!-- Enter here your HTML content. Add a section with an id tag and tag contenteditable="true" if you want to use the inline editor for the content -->
|
||||
<?php
|
||||
if (GETPOST('action') == 'sendmail') {
|
||||
include_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
|
||||
$from = GETPOST('email', 'alpha');
|
||||
$to = $mysoc->email;
|
||||
$message = GETPOST('message', 'alpha');
|
||||
$cmail = new CMailFile('Contact from website', $to, $from, $message);
|
||||
if ($cmail->sendfile()) {
|
||||
?>
|
||||
<script>
|
||||
alert("Message sent successfully !");
|
||||
</script>
|
||||
<?php
|
||||
} else {
|
||||
echo $langs->trans("ErrorFailedToSendMail", $from, $to).'. '.$cmail->error;
|
||||
}
|
||||
}
|
||||
?>
|
||||
<section id="mysection1" contenteditable="true">
|
||||
<nav class="navbar navbar-expand-lg navbar-dark position-fixed px-3">
|
||||
<a class="navbar-brand fw-bold fs-2" href="#landing"> Company </a>
|
||||
<button
|
||||
class="navbar-toggler"
|
||||
type="button"
|
||||
data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarSupportedContent"
|
||||
aria-controls="navbarSupportedContent"
|
||||
aria-expanded="false"
|
||||
aria-label="Toggle navigation"
|
||||
>
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div
|
||||
class="collapse navbar-collapse"
|
||||
id="navbarSupportedContent"
|
||||
>
|
||||
<ul class="navbar-nav me-auto mb-2 mb-lg-0 fw-bold ">
|
||||
<li class="nav-item">
|
||||
<a
|
||||
class="nav-link active"
|
||||
aria-current="page"
|
||||
href="#landing"
|
||||
>Description</a
|
||||
>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" aria-current="page" href="#team"
|
||||
>Team</a
|
||||
>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#contact">Contact</a>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a
|
||||
class="nav-link dropdown-toggle"
|
||||
href="#"
|
||||
id="navbarDropdown"
|
||||
role="button"
|
||||
data-bs-toggle="dropdown"
|
||||
aria-expanded="false"
|
||||
>
|
||||
Useful links
|
||||
</a>
|
||||
<ul
|
||||
class="dropdown-menu"
|
||||
aria-labelledby="navbarDropdown"
|
||||
>
|
||||
<li>
|
||||
<a class="dropdown-item" href="#" onclick="alert('define link')">Link One</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="dropdown-item" href="#" onclick="alert('define link')"
|
||||
>Link two</a
|
||||
>
|
||||
</li>
|
||||
<li><hr class="dropdown-divider" /></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<section id="landing">
|
||||
<main class="landing-content container text-center">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<h1 id="title">Get Productive</h1>
|
||||
<p>
|
||||
Lorem ipsum dolor, sit amet consectetur adipisicing
|
||||
elit. Ab fuga nobis omnis alias, aliquid iste cumque
|
||||
tempora nam reprehenderit quia itaque debitis,
|
||||
nostrum labore rerum reiciendis laboriosam unde,
|
||||
tempore corporis.
|
||||
</p>
|
||||
<img
|
||||
class="img-landing img-fluid"
|
||||
src="/image/lll/bg.png"
|
||||
alt="landing-img"
|
||||
/>
|
||||
</div>
|
||||
<a href="#desc" id="desc-btn" class="btn btn-perso w-auto mx-auto">
|
||||
Learn More <span class="bi-arrow-down"></span>
|
||||
</a>
|
||||
</div>
|
||||
</main>
|
||||
</section>
|
||||
<section id="desc">
|
||||
<div class="container text-white">
|
||||
<div class="row flex text-center article">
|
||||
<div class="col-md-6">
|
||||
<h1 class="article-title fw-bold text-center">
|
||||
LOREM IPSUM DOLOR SIT AMET EZAJB
|
||||
</h1>
|
||||
<img
|
||||
src="/image/lll/article.png"
|
||||
width="50%"
|
||||
alt="article"
|
||||
/>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<h1>Our Company</h1>
|
||||
<p>
|
||||
Lorem ipsum dolor, sit amet consectetur adipisicing
|
||||
elit. Ab fuga nobis omnis alias, aliquid iste cumque
|
||||
tempora nam reprehenderit quia itaque debitis,
|
||||
nostrum labore rerum reiciendis laboriosam unde,
|
||||
tempore corporis.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section id="team">
|
||||
<div class="container">
|
||||
<div class="row founders-article">
|
||||
<div class="col-md-10 mx-auto my-auto">
|
||||
<h1 class="text-center">Founders</h1>
|
||||
<ul id="authors" class="list-group-flush mt-5">
|
||||
<li id="one" onmouseenter="addPointClass(this)" onmouseleave="removePointClass(this)" class="list-group-item">
|
||||
<h3>Author One</h3>
|
||||
</li>
|
||||
<li id="two" onmouseenter="addPointClass(this)" onmouseleave="removePointClass(this)" class="list-group-item">
|
||||
<h3>Author Two</h3>
|
||||
</li>
|
||||
<li id="three" onmouseenter="addPointClass(this)" onmouseleave="removePointClass(this)" class="list-group-item">
|
||||
<h3>Author Three</h3>
|
||||
</li>
|
||||
<li id="four" onmouseenter="addPointClass(this)" onmouseleave="removePointClass(this)" class="list-group-item">
|
||||
<h3>Author Four</h3>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-8 mx-auto">
|
||||
<h4 class="text-center text-secondary">About</h4>
|
||||
<p class="text-left " id="aboutAuthor">
|
||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Veritatis accusantium earum sed odit velit laudantium ex libero quisquam consectetur,
|
||||
dolorem vero ipsam perferendis quibusdam itaque omnis a consequatur error repellat.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="" id="contact">
|
||||
|
||||
<div class="container">
|
||||
<h1 class="h1-responsive font-weight-bold text-center my-4">Contact us</h1>
|
||||
<!--Section description-->
|
||||
<p class="text-center w-responsive mx-auto mb-5">Do you have any questions? Please do not hesitate to contact us directly. Our team will come back to you within
|
||||
a matter of hours to help you.</p>
|
||||
|
||||
<div class="row">
|
||||
|
||||
<!--Grid column-->
|
||||
<div class="col-md-9 mb-md-0 mb-5">
|
||||
<form action="index.php" method="POST">
|
||||
<input type="hidden" name="token" value="<?php echo newToken(); ?>" />
|
||||
<input type="hidden" name="action" value="sendmail">
|
||||
<div class="row gy-3">
|
||||
<div class="col-12 col-md-6">
|
||||
<div class="form-group">
|
||||
<label>Email</label>
|
||||
<input
|
||||
name="email"
|
||||
type="email"
|
||||
class="form-control"
|
||||
placeholder="Email"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Name</label>
|
||||
<input
|
||||
name="name"
|
||||
type="text"
|
||||
class="form-control"
|
||||
placeholder="Name"
|
||||
/>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Phone</label>
|
||||
<input
|
||||
name="phone"
|
||||
type="text"
|
||||
class="form-control"
|
||||
placeholder="Phone"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12 col-md-6">
|
||||
<div class="form-group">
|
||||
<label>Message</label>
|
||||
<textarea
|
||||
name="message"
|
||||
class="form-control"
|
||||
rows="6"
|
||||
placeholder="Your message"
|
||||
></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12 mt-3">
|
||||
<div class="text-center text-md-left">
|
||||
<input type="submit" class="btn btn-perso mt-3 fw-bold fs-5" value="Send message" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-md-3 text-center">
|
||||
<ul class="list-unstyled mb-0">
|
||||
<li><i class="fas fa-map-marker-alt fa-2x"></i>
|
||||
<p><?php echo $mysoc->getFullAddress() ?></p>
|
||||
</li>
|
||||
|
||||
<li><i class="fas fa-phone mt-4 fa-2x"></i>
|
||||
<p><?php echo $mysoc->phone ?></p>
|
||||
</li>
|
||||
|
||||
<li><i class="fas fa-envelope mt-4 fa-2x"></i>
|
||||
<p><?php echo $mysoc->email ?></p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
<script>
|
||||
const about = document.getElementById("aboutAuthor");
|
||||
const commonText = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Veritatis accusantium earum sed odit velit laudantium ex libero quisquam consectetur, dolorem vero ipsam perferendis quibusdam itaque omnis a consequatur error repellat";
|
||||
const authorsText = {
|
||||
one: "Author 1 : lorem ipsum dolor sit amet, consectetur adipis lorem ipsum dolor sit amet, consectetur adipis lorem ipsum dolor sit amet, consectetur adipis lorem ipsum dolor sit amet, consectetur adipis",
|
||||
two: "Author 2 : lorem ipsum dolor sit amet, consectetur adipis lorem ipsum dolor sit amet, consectetur adipislorem ipsum dolor sit amet, consectetur adipis lorem ipsum dolor sit amet, consectetur adipis",
|
||||
three: "Author 3 : lorem ipsum dolor sit amet, consectetur adipis lorem ipsum dolor sit amet, consectetur adipislorem ipsum dolor sit amet, consectetur adipis lorem ipsum dolor sit amet, consectetur adipis",
|
||||
four: "Author 4 : lorem ipsum dolor sit amet, consectetur adipis lorem ipsum dolor sit amet, consectetur adipis lorem ipsum dolor sit amet, consectetur adipis lorem ipsum dolor sit amet, consectetur adipis",
|
||||
}
|
||||
|
||||
addPointClass = function(point) {
|
||||
point.classList.add("pointed");
|
||||
about.innerText = authorsText[point.id];
|
||||
};
|
||||
|
||||
removePointClass = function(point) {
|
||||
point.classList.remove("pointed");
|
||||
about.innerText = commonText;
|
||||
};
|
||||
</script>
|
||||
</section>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<?php // BEGIN PHP
|
||||
$tmp = ob_get_contents(); ob_end_clean(); dolWebsiteOutput($tmp, "html", 202);
|
||||
// END PHP ?>
|
||||
@ -4,51 +4,13 @@ if (! defined('USEDOLIBARRSERVER') && ! defined('USEDOLIBARREDITOR')) { require_
|
||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/website.lib.php';
|
||||
require_once DOL_DOCUMENT_ROOT.'/core/website.inc.php';
|
||||
ob_start();
|
||||
if (! headers_sent()) { /* because file is included inline when in edit mode and we don't want warning */
|
||||
header('Cache-Control: max-age=3600, public, must-revalidate');
|
||||
header('Content-type: text/css');
|
||||
if (! headers_sent()) { /* because file is included inline when in edit mode and we don't want warning */
|
||||
header('Cache-Control: max-age=3600, public, must-revalidate');
|
||||
header('Content-type: text/css');
|
||||
}
|
||||
// END PHP ?>
|
||||
@charset "UTF-8";
|
||||
|
||||
.bodywebsite {
|
||||
/*!
|
||||
* Bootstrap v5.2.1 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2022 The Bootstrap Authors
|
||||
* Copyright 2011-2022 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||
*/
|
||||
/* rtl:raw:
|
||||
[type="tel"],
|
||||
[type="url"],
|
||||
[type="email"],
|
||||
[type="number"] {
|
||||
direction: ltr;
|
||||
}
|
||||
*/
|
||||
/* rtl:begin:ignore */
|
||||
/* rtl:end:ignore */
|
||||
/* rtl:begin:ignore */
|
||||
/* rtl:end:ignore */
|
||||
/* rtl:begin:ignore */
|
||||
/* rtl:end:ignore */
|
||||
/* rtl:begin:ignore */
|
||||
/* rtl:end:ignore */
|
||||
/* rtl:begin:ignore */
|
||||
/* rtl:end:ignore */
|
||||
/* rtl:options: {
|
||||
"autoRename": true,
|
||||
"stringMap":[ {
|
||||
"name" : "prev-next",
|
||||
"search" : "prev",
|
||||
"replace" : "next"
|
||||
} ]
|
||||
} */
|
||||
/* rtl:begin:remove */
|
||||
/* rtl:end:remove */
|
||||
/*# sourceMappingURL=bootstrap.css.map */;
|
||||
}
|
||||
|
||||
.bodywebsite :root {
|
||||
--bs-blue: #0d6efd;
|
||||
--bs-indigo: #6610f2;
|
||||
@ -12468,7 +12430,6 @@ if (! headers_sent()) { /* because file is included inline when in edit mode and
|
||||
/*# sourceMappingURL=bootstrap.css.map */
|
||||
|
||||
.bodywebsite #mysection1 {
|
||||
font-family: Gulzar;
|
||||
font-size: 1.2rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
@ -12485,10 +12446,6 @@ if (! headers_sent()) { /* because file is included inline when in edit mode and
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.bodywebsite section{
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.bodywebsite .btn-perso {
|
||||
background-color: #50759e;
|
||||
padding-left: 20px;
|
||||
@ -12543,8 +12500,8 @@ if (! headers_sent()) { /* because file is included inline when in edit mode and
|
||||
}
|
||||
|
||||
.bodywebsite .container {
|
||||
padding-top: 10%;
|
||||
padding-bottom: 10%;
|
||||
padding-top: 5%;
|
||||
padding-bottom: 5%;
|
||||
}
|
||||
<?php // BEGIN PHP
|
||||
$tmp = ob_get_contents(); ob_end_clean(); dolWebsiteOutput($tmp, "css");
|
||||
|
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 131 KiB After Width: | Height: | Size: 131 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
@ -0,0 +1,4 @@
|
||||
LICENSE
|
||||
-------
|
||||
|
||||
CC-BY-SA - https://creativecommons.org/licenses/by/4.0/
|
||||
|
Before Width: | Height: | Size: 335 KiB After Width: | Height: | Size: 335 KiB |
@ -0,0 +1,4 @@
|
||||
LICENSE
|
||||
-------
|
||||
|
||||
CC-BY-SA - https://creativecommons.org/licenses/by/4.0/
|
||||
@ -0,0 +1 @@
|
||||
Website generated by Dolibarr ERP CRM
|
||||
|
Before Width: | Height: | Size: 235 KiB After Width: | Height: | Size: 235 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
@ -0,0 +1,8 @@
|
||||
LICENSE
|
||||
-------
|
||||
|
||||
Images are provided under the license:
|
||||
Unsplash+ License
|
||||
|
||||
Rest of templates (HTML and PHP code) content are under license
|
||||
CC-BY-SA - https://creativecommons.org/licenses/by/4.0/
|
||||
@ -0,0 +1 @@
|
||||
Website generated by Dolibarr ERP CRM
|
||||
@ -0,0 +1 @@
|
||||
Website generated by Dolibarr ERP CRM
|
||||
@ -0,0 +1,6 @@
|
||||
|
||||
<link rel="stylesheet" id="google-fonts-css" href="//fonts.googleapis.com/css?family=Open+Sans:300,400,700" />
|
||||
<link rel="stylesheet" id="font-wasesome-css" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
|
||||
|
||||
@ -10,4 +10,4 @@ header('Content-type: application/manifest+json');
|
||||
|
||||
<?php // BEGIN PHP
|
||||
$tmp = ob_get_contents(); ob_end_clean(); dolWebsiteOutput($tmp, "manifest");
|
||||
// END PHP
|
||||
// END PHP ?>
|
||||
@ -1,6 +1,7 @@
|
||||
<?php
|
||||
// File generated to link to the master file - DO NOT MODIFY - It is just an include
|
||||
if (! defined('USEDOLIBARRSERVER') && ! defined('USEDOLIBARREDITOR')) {
|
||||
if (! defined('USEEXTERNALSERVER')) define('USEEXTERNALSERVER', 1);
|
||||
require_once '/var/www/html/dolibarr_dev/htdocs/master.inc.php';
|
||||
if (! defined('USEEXTERNALSERVER')) define('USEEXTERNALSERVER', 1);
|
||||
require_once '/home/ldestailleur/git/dolibarr_dev/htdocs/master.inc.php';
|
||||
}
|
||||
?>
|
||||
|
Before Width: | Height: | Size: 277 KiB After Width: | Height: | Size: 277 KiB |
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
|
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 87 KiB |
|
Before Width: | Height: | Size: 414 KiB After Width: | Height: | Size: 414 KiB |
|
Before Width: | Height: | Size: 254 KiB After Width: | Height: | Size: 254 KiB |
|
Before Width: | Height: | Size: 284 KiB After Width: | Height: | Size: 284 KiB |
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 320 KiB After Width: | Height: | Size: 320 KiB |
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 92 KiB |
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 59 KiB |
|
Before Width: | Height: | Size: 241 KiB After Width: | Height: | Size: 241 KiB |
|
Before Width: | Height: | Size: 445 KiB After Width: | Height: | Size: 445 KiB |
|
Before Width: | Height: | Size: 278 KiB After Width: | Height: | Size: 278 KiB |
|
Before Width: | Height: | Size: 305 KiB After Width: | Height: | Size: 305 KiB |
|
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 96 KiB |
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 370 KiB After Width: | Height: | Size: 370 KiB |
|
Before Width: | Height: | Size: 200 KiB After Width: | Height: | Size: 200 KiB |
|
Before Width: | Height: | Size: 219 KiB After Width: | Height: | Size: 219 KiB |