-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.php
More file actions
507 lines (448 loc) · 27.9 KB
/
Copy pathindex.php
File metadata and controls
507 lines (448 loc) · 27.9 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
<?php
// PHP version 8.4.7
session_start();
// Suppress deprecation warnings
error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>n8n Templates Portal</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body class="bg-gray-50">
<div class="min-h-screen">
<!-- Header -->
<div class="bg-gradient-to-r from-cyan-600 via-blue-600 to-purple-600 text-white" style="background: linear-gradient(to right, rgb(8 145 178) 0%, rgb(37 99 235) 15%, rgb(147 51 234) 100%);">
<div class="container mx-auto px-4 py-12">
<div class="text-center">
<h1 class="text-4xl md:text-6xl font-bold flex items-center justify-center mb-4">
<i class="fas fa-cogs mr-4"></i>
n8n Templates Portal
</h1>
<p class="text-xl md:text-2xl text-blue-100 mb-6">Your Gateway to Automation Excellence</p>
<div class="max-w-3xl mx-auto text-blue-200 text-sm md:text-base leading-relaxed">
<p>Discover, browse, and download comprehensive n8n workflow templates from three expertly curated collections. Whether you're looking for official workflows,third-party integrations, battle-tested templates from n8n YouTubers and influencers, or community contributed workflows, we've got you covered.</p>
</div>
<div class="mt-6 text-xs text-blue-200">
<p>Curated by <a href="https://www.linkedin.com/in/weng-fung/" target="_blank" class="text-white hover:text-blue-100 underline">Weng Fei Fung</a></p>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="container mx-auto px-4 py-12">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 max-w-screen-2xl mx-auto">
<!-- n8n Official Section -->
<div class="workflow-card bg-white rounded-lg shadow-lg overflow-hidden hover:shadow-xl transition-all duration-300 transform hover:scale-[1.02]">
<div class="bg-gradient-to-r from-cyan-600 to-blue-600 text-white p-6">
<div class="flex items-center mb-4">
<i class="fas fa-star text-3xl mr-4"></i>
<div>
<h2 class="text-2xl font-bold">Official n8n Workflow Templates</h2>
<p class="text-cyan-100 text-sm">Workflow templates from the n8n Core Team</p>
</div>
</div>
</div>
<div class="p-6">
<div class="space-y-4">
<div class="flex items-start">
<i class="fas fa-download text-cyan-600 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-gray-800">Direct Downloads</h3>
<p class="text-gray-600 text-sm">Download 90+ official workflow templates created by the n8n core team</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-search text-teal-600 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-gray-800">Browse & Search</h3>
<p class="text-gray-600 text-sm">Explore official workflows with advanced filtering and search capabilities</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-certificate text-sky-600 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-gray-800">Official Documentation Available</h3>
<p class="text-gray-600 text-sm">Complete documentation and guides provided by the official n8n development team</p>
</div>
</div>
</div>
<div style="height: 20px;"></div>
<div class="mt-6 pt-4 border-t border-gray-200">
<div class="flex items-center justify-between">
<div class="text-sm text-gray-500">
<i class="fas fa-info-circle mr-1"></i>
Official workflows from the n8n core team
<a href="https://n8n.io/creators/n8n-team/" target="_blank" class="text-gray-600 hover:text-blue-600 transition-colors ml-1">
<i class="fas fa-external-link-alt opacity-50"></i>
</a>
<span class="warning-trigger cursor-pointer text-yellow-600 hover:text-yellow-700 ml-2"
data-warning="n8n's official templates have not been updated for a few years and may require modifications for current n8n versions."
title="Click for important information">
<i class="fas fa-exclamation-triangle"></i>
</span>
</div>
<a href="n8n-official/"
class="inline-flex items-center px-4 py-2 bg-gradient-to-r from-cyan-600 to-blue-600 text-white font-medium rounded-lg hover:from-cyan-700 hover:to-blue-700 transition-all duration-200 transform hover:scale-105">
<i class="fas fa-arrow-right mr-2"></i>
Browse Official
</a>
</div>
</div>
</div>
</div>
<!-- n8n Partners Section -->
<div class="workflow-card bg-white rounded-lg shadow-lg overflow-hidden hover:shadow-xl transition-all duration-300 transform hover:scale-[1.02]">
<div class="bg-gradient-to-r from-blue-600 to-purple-600 text-white p-6">
<div class="flex items-center mb-4">
<i class="fas fa-handshake text-3xl mr-4"></i>
<div>
<h2 class="text-2xl font-bold">Official n8n Integrations</h2>
<p class="text-blue-100 text-sm">Third-party integrations tested by the n8n core team</p>
</div>
</div>
</div>
<div class="p-6">
<div class="space-y-4">
<div class="flex items-start">
<i class="fas fa-download text-green-600 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-gray-800">Direct Downloads</h3>
<p class="text-gray-600 text-sm">Download 200+ workflow JSON files, then add your credentials to test the integration on your n8n instance.</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-search text-blue-600 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-gray-800">Find Specific Integrations</h3>
<p class="text-gray-600 text-sm">Quickly locate workflows for particular third-party services</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-compass text-purple-600 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-gray-800">Discover New Integrations</h3>
<p class="text-gray-600 text-sm">Browse n8n's comprehensive collection of integration examples</p>
</div>
</div>
</div>
<div style="height: 20px;"></div>
<div class="mt-6 pt-4 border-t border-gray-200">
<div class="flex items-center justify-between">
<div class="text-sm text-gray-500">
<i class="fas fa-info-circle mr-1"></i>
Official n8n test workflows supporting integration
<a href="https://github.com/n8n-io/test-workflows" target="_blank" class="text-gray-600 hover:text-blue-600 transition-colors ml-1">
<i class="fas fa-external-link-alt opacity-50"></i>
</a>
</div>
<a href="n8n-partners/"
class="inline-flex items-center px-4 py-2 bg-gradient-to-r from-blue-600 to-purple-600 text-white font-medium rounded-lg hover:from-blue-700 hover:to-purple-700 transition-all duration-200 transform hover:scale-105">
<i class="fas fa-arrow-right mr-2"></i>
Browse Partners
</a>
</div>
</div>
</div>
</div>
<!-- Oleg Browser Section -->
<div class="workflow-card bg-white rounded-lg shadow-lg overflow-hidden hover:shadow-xl transition-all duration-300 transform hover:scale-[1.02]">
<div class="bg-gradient-to-r from-blue-600 to-purple-600 text-white p-6">
<div class="flex items-center mb-4">
<i class="fas fa-video text-3xl mr-4"></i>
<div>
<h2 class="text-2xl font-bold">Oleg's Workflows with Explanations</h2>
<p class="text-blue-100 text-sm">Created and taught by n8n community's favorite Youtubers</p>
</div>
</div>
</div>
<div class="p-6">
<div class="space-y-4">
<div class="flex items-start">
<i class="fas fa-download text-blue-600 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-gray-800">Direct Downloads</h3>
<p class="text-gray-600 text-sm">Download 150+ battle-tested JSON workflows from n8n content creators</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-search text-purple-600 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-gray-800">Advanced Search & Filtering</h3>
<p class="text-gray-600 text-sm">Find templates by creator, category, or specific automation use case</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-play-circle text-green-600 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-gray-800">Video Tutorials Included</h3>
<p class="text-gray-600 text-sm">Most templates include YouTube tutorials from their creators</p>
</div>
</div>
</div>
<div style="height: 40px;"></div>
<div class="mt-6 pt-4 border-t border-gray-200">
<div class="flex items-center justify-between">
<div class="text-sm text-gray-500">
<i class="fas fa-info-circle mr-1"></i>
Made by n8n Influencers
<a href="https://docs.google.com/spreadsheets/d/1v8aRvHQBwglhdWrpoCNE9fzptiCc23UxQvuhgr2RlIM/edit?gid=0#gid=0" target="_blank" class="text-gray-600 hover:text-blue-600 transition-colors ml-1">
<i class="fas fa-external-link-alt opacity-50"></i>
</a>
</div>
<a href="oleg-browser/"
class="inline-flex items-center px-4 py-2 bg-gradient-to-r from-blue-600 to-purple-600 text-white font-medium rounded-lg hover:from-blue-700 hover:to-purple-700 transition-all duration-200 transform hover:scale-105">
<i class="fas fa-arrow-right mr-2"></i>
Browse Templates
</a>
</div>
</div>
</div>
</div>
<!-- zie619 Browser Section -->
<div class="workflow-card bg-white rounded-lg shadow-lg overflow-hidden hover:shadow-xl transition-all duration-300 transform hover:scale-[1.02]">
<div class="bg-gradient-to-r from-purple-600 to-pink-600 text-white p-6">
<div class="flex items-center mb-4">
<i class="fas fa-database text-3xl mr-4"></i>
<div>
<h2 class="text-2xl font-bold">zie619's Community Collection</h2>
<p class="text-purple-100 text-sm">Massive Workflows Archive by the n8n community</p>
</div>
</div>
</div>
<div class="p-6">
<div class="space-y-4">
<div class="flex items-start">
<i class="fas fa-download text-pink-600 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-gray-800">Direct Downloads</h3>
<p class="text-gray-600 text-sm">Download 2,000+ workflow JSON files directly from the organized collection</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-archive text-purple-600 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-gray-800">Open Source Collection</h3>
<p class="text-gray-600 text-sm">Many contributors actively contributing in one place</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-project-diagram text-indigo-600 mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-gray-800">Visual Flow Diagrams</h3>
<p class="text-gray-600 text-sm">Preview workflow structures with interactive Mermaid diagrams in your browser</p>
</div>
</div>
<div style="height: 3px;"></div>
</div>
<div class="mt-6 pt-4 border-t border-gray-200">
<div class="flex items-center justify-between">
<div class="text-sm text-gray-500">
<i class="fas fa-info-circle mr-1"></i>
Developed by zie619 and the community
<a href="https://github.com/Zie619/n8n-workflows/commits?author=Siphon880gh" target="_blank" class="text-gray-600 hover:text-blue-600 transition-colors ml-1">
<i class="fas fa-external-link-alt opacity-50"></i>
</a>
</div>
<a href="zie619-community/"
class="inline-flex items-center px-4 py-2 bg-gradient-to-r from-purple-600 to-pink-600 text-white font-medium rounded-lg hover:from-purple-700 hover:to-pink-700 transition-all duration-200 transform hover:scale-105">
<i class="fas fa-arrow-right mr-2"></i>
Browse Archive
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Stats Section -->
<div class="mt-12 bg-white rounded-lg shadow-lg overflow-hidden">
<div class="bg-gradient-to-r from-gray-600 to-gray-800 text-white p-6 text-center">
<h3 class="text-2xl font-bold mb-2">Complete Collection Overview</h3>
<p class="text-gray-200">Four comprehensive resources for n8n automation mastery</p>
</div>
<div class="p-6">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="text-center p-4 bg-gradient-to-br from-cyan-50 to-teal-50 rounded-lg border border-cyan-200">
<div class="text-3xl font-bold text-cyan-600 mb-2">
<i class="fas fa-star"></i>
</div>
<div class="text-lg font-semibold text-gray-800">Official Team</div>
<div class="text-sm text-gray-600">90 production-ready workflows by the n8n core development team</div>
</div>
<div class="text-center p-4 bg-gradient-to-br from-blue-50 to-purple-50 rounded-lg border border-blue-200">
<div class="text-3xl font-bold text-blue-600 mb-2">
<i class="fas fa-handshake"></i>
</div>
<div class="text-lg font-semibold text-gray-800">Official Partners</div>
<div class="text-sm text-gray-600">Third-party integrations from the n8n team's tested workflows</div>
</div>
<div class="text-center p-4 bg-gradient-to-br from-blue-50 to-purple-50 rounded-lg border border-blue-200">
<div class="text-3xl font-bold text-blue-600 mb-2">
<i class="fas fa-video"></i>
</div>
<div class="text-lg font-semibold text-gray-800">YouTuber Collection</div>
<div class="text-sm text-gray-600">Battle-tested templates from n8n content creators and influencers</div>
</div>
<div class="text-center p-4 bg-gradient-to-br from-purple-50 to-pink-50 rounded-lg border border-purple-200">
<div class="text-3xl font-bold text-purple-600 mb-2">
<i class="fas fa-database"></i>
</div>
<div class="text-lg font-semibold text-gray-800">Community Archive</div>
<div class="text-sm text-gray-600">2,000+ systematically organized workflows by zie619</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="mt-12 text-center text-gray-600">
<div class="flex justify-center items-center space-x-6 mb-4">
<a href="https://github.com/Siphon880gh" target="_blank" class="hover:text-blue-600 transition-colors">
<i class="fab fa-github text-xl mr-1"></i>
GitHub
</a>
<a href="https://www.linkedin.com/in/weng-fung/" target="_blank" class="hover:text-blue-600 transition-colors">
<i class="fab fa-linkedin text-xl mr-1"></i>
LinkedIn
</a>
<a href="https://www.youtube.com/@WayneTeachesCode/" target="_blank" class="hover:text-red-600 transition-colors">
<i class="fab fa-youtube text-xl mr-1"></i>
YouTube
</a>
</div>
<p class="text-sm">Made with ❤️ by Weng Fei Fung</p>
</div>
</div>
</div>
<script>
$(document).ready(function() {
let animationTimeouts = [];
let animationsActive = true;
// Get all workflow cards dynamically
const workflowCards = document.querySelectorAll('.workflow-card');
// Progressive disclosure animation for cards
function animateCard(card, delay) {
const timeout = setTimeout(function() {
if (!animationsActive) return;
if (card) {
// Add highlight effect
card.style.transform = 'scale(1.05)';
card.style.boxShadow = '0 25px 50px -12px rgba(0, 0, 0, 0.25)';
card.style.zIndex = '10';
// Remove highlight after 2 seconds
const removeTimeout = setTimeout(function() {
if (card) {
card.style.transform = '';
card.style.boxShadow = '';
card.style.zIndex = '';
}
}, 2000);
animationTimeouts.push(removeTimeout);
}
}, delay);
animationTimeouts.push(timeout);
}
// Stop all animations
function stopAllAnimations() {
animationsActive = false;
// Clear all pending timeouts
animationTimeouts.forEach(timeout => clearTimeout(timeout));
animationTimeouts = [];
// Reset all cards to normal state
workflowCards.forEach(card => {
if (card) {
card.style.transform = '';
card.style.boxShadow = '';
card.style.zIndex = '';
}
});
}
// Add hover listeners to stop animations
$('.workflow-card').on('mouseenter', function() {
if (animationsActive) {
stopAllAnimations();
}
});
// Start progressive disclosure after page loads
const startTimeout = setTimeout(function() {
if (animationsActive && workflowCards.length > 0) {
// Animate each card with 2.5 second intervals
workflowCards.forEach((card, index) => {
animateCard(card, index * 2500);
});
}
}, 1000); // Wait 1 second after page load to start
animationTimeouts.push(startTimeout);
// Add smooth scrolling to anchor links
$('a[href^="#"]').on('click', function(event) {
var target = $(this.getAttribute('href'));
if( target.length ) {
event.preventDefault();
$('html, body').stop().animate({
scrollTop: target.offset().top - 80
}, 800);
}
});
// Add hover effects to cards
$('.hover\\:shadow-xl').hover(
function() {
$(this).addClass('shadow-2xl');
},
function() {
$(this).removeClass('shadow-2xl');
}
);
// Add loading state to buttons
$('a[href*="/"]').on('click', function() {
const $btn = $(this);
const originalHtml = $btn.html();
$btn.html('<i class="fas fa-spinner fa-spin mr-2"></i>Loading...');
// Reset after 3 seconds in case of navigation issues
setTimeout(function() {
$btn.html(originalHtml);
}, 3000);
});
// Handle warning icon clicks
$('.warning-trigger').on('click', function(e) {
e.preventDefault();
e.stopPropagation();
const warningText = $(this).data('warning');
// Create a nice alert-style modal
const alertHtml = `
<div class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50" id="warning-modal">
<div class="bg-white rounded-lg p-6 m-4 max-w-md shadow-2xl">
<div class="flex items-start mb-4">
<i class="fas fa-exclamation-triangle text-yellow-600 text-xl mr-3 mt-1"></i>
<div>
<h3 class="font-semibold text-gray-800 mb-2">Important Notice</h3>
<p class="text-gray-600 text-sm">${warningText}</p>
</div>
</div>
<div class="flex justify-end">
<button class="px-4 py-2 bg-gray-500 text-white rounded hover:bg-gray-600 transition-colors" onclick="closeWarningModal()">
Got it
</button>
</div>
</div>
</div>
`;
$('body').append(alertHtml);
});
// Function to close warning modal
window.closeWarningModal = function() {
$('#warning-modal').remove();
};
// Close modal when clicking outside
$(document).on('click', '#warning-modal', function(e) {
if (e.target === this) {
closeWarningModal();
}
});
});
</script>
</body>
</html>