agard commited on
Commit
a5e596f
·
verified ·
1 Parent(s): b246aa7

you are best web develover an i want that you change the next footer to be best elegant professionnels convertibles for my web site newwrit.com

Browse files

simple clair and professionnel

Footer Text One
© Copyright %year%, All Rights Reserved  |  <span style="color:red;" class="tie-icon-heart"></span> <a href="https://tielabs.com/go/jannah-sites-footer" target="_blank" rel="nofollow noopener">Jannah News Theme by TieLabs</a> | Proudly Hosted by <a href="https://tielabs.com/go/jnhstgr/" target="_blank" rel="nofollow noopener">SiteGround</a>
Supports: Text, HTML and Shortcodes.
Variables These tags can be included in the textarea above and will be replaced when a page is displayed.
%year% : Replaced with the current year.
%site% : Replaced with The site's name.
%url% : Replaced with The site's URL.

Files changed (2) hide show
  1. index.html +8 -1
  2. workflow.html +17 -15
index.html CHANGED
@@ -103,8 +103,15 @@
103
  backgroundColor: 0x111827,
104
  size: 0.8
105
  });
106
-
107
  feather.replace();
 
 
 
 
 
 
 
 
108
  </script>
109
  </body>
110
  </html>
 
103
  backgroundColor: 0x111827,
104
  size: 0.8
105
  });
 
106
  feather.replace();
107
+ // Replace footer variables
108
+ document.addEventListener('DOMContentLoaded', function() {
109
+ const currentYear = new Date().getFullYear();
110
+ document.body.innerHTML = document.body.innerHTML
111
+ .replace(/%year%/g, currentYear)
112
+ .replace(/%site%/g, 'NewWrit')
113
+ .replace(/%url%/g, window.location.hostname);
114
+ });
115
  </script>
116
  </body>
117
  </html>
workflow.html CHANGED
@@ -171,36 +171,38 @@ volumes:
171
  </div>
172
  </div>
173
  </main>
174
-
175
- <footer class="bg-gray-800/50 border-t border-gray-700 mt-20">
176
- <div class="container mx-auto px-4 py-8">
177
  <div class="flex flex-col md:flex-row justify-between items-center">
178
- <div class="mb-4 md:mb-0">
179
- <a href="index.html" class="flex items-center">
180
- <i data-feather="zap" class="text-blue-400 mr-2"></i>
181
- <span class="text-xl font-bold bg-gradient-to-r from-blue-400 to-purple-500 bg-clip-text text-transparent">ContentCashflow</span>
182
- </a>
183
  </div>
184
- <div class="flex space-x-6">
185
  <a href="#" class="text-gray-400 hover:text-blue-400 transition">
186
- <i data-feather="github"></i>
187
  </a>
188
  <a href="#" class="text-gray-400 hover:text-blue-400 transition">
189
- <i data-feather="twitter"></i>
190
  </a>
191
  <a href="#" class="text-gray-400 hover:text-blue-400 transition">
192
  <i data-feather="mail"></i>
193
  </a>
194
  </div>
195
  </div>
196
- <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-500 text-sm">
197
- <p>© 2023 ContentCashflow Automaton. Battle-tested automation for content revenue.</p>
198
- </div>
199
  </div>
200
  </footer>
201
-
202
  <script>
203
  feather.replace();
 
 
 
 
 
 
 
 
204
  </script>
205
  </body>
206
  </html>
 
171
  </div>
172
  </div>
173
  </main>
174
+ <footer class="bg-gray-900 border-t border-gray-800 py-6">
175
+ <div class="container mx-auto px-4">
 
176
  <div class="flex flex-col md:flex-row justify-between items-center">
177
+ <div class="text-center md:text-left mb-4 md:mb-0">
178
+ <p class="text-gray-400 text-sm">
179
+ &copy; Copyright %year%, <a href="%url%" class="text-blue-400 hover:underline">%site%</a>. All Rights Reserved
180
+ </p>
 
181
  </div>
182
+ <div class="flex space-x-4">
183
  <a href="#" class="text-gray-400 hover:text-blue-400 transition">
184
+ <i data-feather="twitter"></i>
185
  </a>
186
  <a href="#" class="text-gray-400 hover:text-blue-400 transition">
187
+ <i data-feather="linkedin"></i>
188
  </a>
189
  <a href="#" class="text-gray-400 hover:text-blue-400 transition">
190
  <i data-feather="mail"></i>
191
  </a>
192
  </div>
193
  </div>
 
 
 
194
  </div>
195
  </footer>
 
196
  <script>
197
  feather.replace();
198
+ // Replace footer variables
199
+ document.addEventListener('DOMContentLoaded', function() {
200
+ const currentYear = new Date().getFullYear();
201
+ document.body.innerHTML = document.body.innerHTML
202
+ .replace(/%year%/g, currentYear)
203
+ .replace(/%site%/g, 'NewWrit')
204
+ .replace(/%url%/g, window.location.hostname);
205
+ });
206
  </script>
207
  </body>
208
  </html>