-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-mawacalc.php
More file actions
79 lines (59 loc) · 1.93 KB
/
page-mawacalc.php
File metadata and controls
79 lines (59 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
/**
* Template Name: MAWACalc Page
*
* @package Sandbox
*/
get_header();
?>
<main id="primary" class="site-main">
<div class="sandbox-container">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
?>
<div class="sandbox-mawacalc-wrapper">
<h2>Powerful Features</h2>
<div class="sb-mawacalc-row">
<div class="sb-mawacalc-col">
<div class="sb-mawacalc-inner-content">
<h3>Automated Calculations</h3>
<p>Instant MAWA and ETWU calculations for your landscape projects.</p>
</div>
</div>
<div class="sb-mawacalc-col">
<div class="sb-mawacalc-inner-content">
<h3>PDF Export</h3>
<p>Export your calculations to PDF format. Include within plan sets or generate separate compliance reports.</p>
</div>
</div>
<div class="sb-mawacalc-col">
<div class="sb-mawacalc-inner-content">
<h3>Project Storage</h3>
<p>Save and manage multiple landscape projects.</p>
</div>
</div>
</div>
</div>
<div class="sandbox-mawacalc-wrapper">
<div class="sandbox-mawacalc-screenshots-wrapper">
<h2>App Screenshots:</h2>
<img src="/wp-content/uploads/2025/08/mawacalc-dashboard-ss.png" alt="Screenshot of MAWACalc app dashboard">
<img src="/wp-content/uploads/2025/08/mawacalc-app-ss-1.png" alt="Screenshot of MAWACalc app">
<h2>PDF Report Sample:</h2>
<img src="/wp-content/uploads/2025/08/San-Rafael-Down-Town-2025-07-29-mwelo-scaled.png" alt="MAWACalc sample PDF Report">
</div>
</div>
<?php
// If comments are open or we have at least one comment, load up the comment template.
// if ( comments_open() || get_comments_number() ) :
// comments_template();
// endif;
endwhile; // End of the loop.
?>
</div>
</main><!-- #main -->
<?php
// get_sidebar();
get_footer('landingpage');