This is an automated email from the ASF dual-hosted git repository.

yukon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-amoro-site.git


The following commit(s) were added to refs/heads/master by this push:
     new fbfa5e8  remove pricing partial from amoro-theme
fbfa5e8 is described below

commit fbfa5e83c66d5c498cc189094f9cd9a41bd696e7
Author: zhoujinsong <[email protected]>
AuthorDate: Thu Apr 4 11:02:14 2024 +0800

    remove pricing partial from amoro-theme
---
 amoro-theme/layouts/partials/pricing.html | 52 -------------------------------
 1 file changed, 52 deletions(-)

diff --git a/amoro-theme/layouts/partials/pricing.html 
b/amoro-theme/layouts/partials/pricing.html
deleted file mode 100644
index 196923f..0000000
--- a/amoro-theme/layouts/partials/pricing.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<!-- - Licensed to the Apache Software Foundation (ASF) under one or more-->
-<!-- - contributor license agreements.  See the NOTICE file distributed with-->
-<!-- - this work for additional information regarding copyright ownership.-->
-<!-- - The ASF licenses this file to You under the Apache License, Version 
2.0-->
-<!-- - (the "License"); you may not use this file except in compliance with-->
-<!-- - the License.  You may obtain a copy of the License at-->
-<!-- - -->
-<!-- -   http://www.apache.org/licenses/LICENSE-2.0-->
-<!-- - -->
-<!-- - Unless required by applicable law or agreed to in writing, software-->
-<!-- - distributed under the License is distributed on an "AS IS" BASIS,-->
-<!-- - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 
implied.-->
-<!-- - See the License for the specific language governing permissions and-->
-<!-- - limitations under the License.-->
-<!-- Pricing Section -->
-<section id="pricing" class="container content-section text-center">
-    {{ range where .Site.RegularPages "Section" "pricing" | first 1 }}
-        <div class="row">
-            <div class="col-lg-8 col-lg-offset-2">
-                <br/>
-                <br/>
-                <h2>{{ .Title }}</h2>
-                <br/>
-                {{ .Content }}
-                <br/>
-
-                {{ $length := len $.Site.Data.pricing }}
-                <div class="Rtable Rtable--{{ $length }}cols Rtable--collapse">
-
-                    {{ range $index, $content := $.Site.Data.pricing }}
-                        <div style="order:0;" class="Rtable-cell 
Rtable-cell--head"><h3>{{ $content.name }}</h3></div>
-                        {{ range $i, $feature := $content.features}}
-                            {{ $c :=add $i 1 }}
-                            <div style="order:{{ $c }};" 
class="Rtable-cell">{{ $feature.name }}</div>
-                        {{ end }}
-                        {{ $d := len $content.features }}
-                        <div style="order:{{ add $d 1 }};" class="Rtable-cell 
Rtable-cell--foot">
-                            <div class="pricing">
-                                <a href="{{ $content.link }}">
-                                    {{ $content.linkText }}
-                                </a>
-                            </div>
-                        </div>
-
-                    {{ end }}
-                </div>
-
-            </div>
-        </div>
-    {{ end }}
-    </section>
-    

Reply via email to