D3 Part 3: remaining five pages on design system v2
alkalmazasok (verified hand-maintained — no generator in any repo; the
49-card grid layout stays, screenshots/logos untouched), technologiak,
biztonsagimentes, gyik, szolgaltatasok-nonpublic (re-skinned, remains
unlinked from nav): same conversion — Google Fonts out, site.css?v=1
in, style blocks deleted, body classes, canonical nav/footer, all
emoji -> sprite icons (category/FAQ/service headers .ico-lg, feature
tiles .ico-tile, inline .ico) incl. an ℹ️ the census ranges initially
missed (its FE0F variation selector tripped the gate — the gate works).
ALL 8 SITE GATES GREEN: BOM ×7, emoji 0 (baseline was 182), nav/footer
identical after active-marker normalization, analytics on all 6 public
pages, no CDN, banned legacy tokens 0 (baseline 84 problems), <style>
blocks 7→0, every shared-asset ref cache-busted.
This commit is contained in:
+13
-402
@@ -39,412 +39,23 @@
|
||||
]
|
||||
}
|
||||
</script>
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
||||
<!-- shared assets: bump ?v= together on any site.css/icons.svg change -->
|
||||
<link rel="stylesheet" href="/assets/site.css?v=1">
|
||||
<link rel="icon" type="image/png" href="/assets/logo_favicon_2.svg">
|
||||
<script defer src="https://stats.felhom.eu/script.js" data-website-id="d419db57-5e1c-48df-bdb3-c29f25fb1661"></script>
|
||||
<style>
|
||||
:root {
|
||||
--bg-primary: #0d1117;
|
||||
--bg-secondary: #161b22;
|
||||
--bg-card: #1c2128;
|
||||
--text-primary: #e6edf3;
|
||||
--text-secondary: #8b949e;
|
||||
--text-muted: #6e7681;
|
||||
--accent-blue: #0088cc;
|
||||
--accent-light: #00aaff;
|
||||
--accent-glow: rgba(0, 136, 204, 0.3);
|
||||
--border-color: #30363d;
|
||||
--success-green: #238636;
|
||||
--warning-orange: #d29922;
|
||||
}
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
html { scroll-behavior: smooth; }
|
||||
body {
|
||||
font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
background: var(--bg-primary);
|
||||
color: var(--text-primary);
|
||||
line-height: 1.6;
|
||||
min-height: 100vh;
|
||||
}
|
||||
body::before {
|
||||
content: '';
|
||||
position: fixed;
|
||||
top: 0; left: 0;
|
||||
width: 100%; height: 100%;
|
||||
background-image:
|
||||
linear-gradient(rgba(0, 136, 204, 0.03) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(0, 136, 204, 0.03) 1px, transparent 1px);
|
||||
background-size: 50px 50px;
|
||||
pointer-events: none;
|
||||
z-index: -1;
|
||||
}
|
||||
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
|
||||
nav {
|
||||
position: fixed;
|
||||
top: 0; left: 0; right: 0;
|
||||
padding: 20px 0;
|
||||
background: rgba(13, 17, 23, 0.9);
|
||||
backdrop-filter: blur(12px);
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
z-index: 200;
|
||||
}
|
||||
nav .container { display: flex; justify-content: space-between; align-items: center; }
|
||||
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
|
||||
.logo img { height: 40px; width: auto; }
|
||||
.logo-text { font-size: 1.5rem; font-weight: 700; color: var(--accent-light); letter-spacing: -0.02em; }
|
||||
.nav-links { display: flex; gap: 32px; list-style: none; }
|
||||
.nav-links a { color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s ease; }
|
||||
.nav-links a:hover, .nav-links a.active { color: var(--accent-light); }
|
||||
.page-header { padding: 140px 0 60px; text-align: center; }
|
||||
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
|
||||
.page-header h1 span { background: linear-gradient(135deg, var(--accent-light), var(--accent-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
|
||||
.page-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto 32px; }
|
||||
.disclaimer-banner {
|
||||
background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 136, 204, 0.05));
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 12px;
|
||||
padding: 24px 32px;
|
||||
margin: 0 auto 48px;
|
||||
max-width: 760px;
|
||||
text-align: left;
|
||||
}
|
||||
.disclaimer-banner h3 { font-size: 1rem; color: var(--accent-light); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
|
||||
.disclaimer-banner ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
|
||||
.disclaimer-banner li { color: var(--text-secondary); font-size: 0.9rem; position: relative; padding-left: 24px; line-height: 1.5; }
|
||||
.disclaimer-banner li::before { content: '✓'; color: var(--success-green); font-weight: bold; position: absolute; left: 0; top: 0; }
|
||||
.disclaimer-banner li strong { color: var(--text-primary); }
|
||||
.disclaimer-banner a { color: var(--accent-light); }
|
||||
.category-section { margin-bottom: 64px; }
|
||||
.category-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-color); }
|
||||
.category-icon { font-size: 1.8rem; }
|
||||
.category-header h2 { font-size: 1.5rem; font-weight: 600; color: var(--text-primary); }
|
||||
.category-header .app-count { background: var(--bg-card); color: var(--text-secondary); padding: 4px 12px; border-radius: 12px; font-size: 0.8rem; font-weight: 500; }
|
||||
.app-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
|
||||
.app-card {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
transition: all 0.3s ease;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.app-card:hover { border-color: var(--accent-blue); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }
|
||||
.app-card-header { display: flex; align-items: center; gap: 16px; padding: 20px; border-bottom: 1px solid var(--border-color); }
|
||||
.app-logo { width: 48px; height: 48px; border-radius: 10px; object-fit: contain; background: var(--bg-secondary); padding: 6px; flex-shrink: 0; }
|
||||
.app-title-area h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
|
||||
.app-title-area .app-tagline { font-size: 0.8rem; color: var(--text-muted); }
|
||||
.app-card-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
|
||||
.app-description { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
|
||||
.app-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
|
||||
.app-feature { background: rgba(0, 136, 204, 0.1); color: var(--accent-light); padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 500; }
|
||||
.app-screenshot { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 8px; border: 1px solid var(--border-color); background: var(--bg-secondary); cursor: pointer; transition: opacity 0.2s ease, transform 0.2s ease; }
|
||||
.app-screenshot:hover { opacity: 0.9; transform: scale(1.02); }
|
||||
|
||||
/* Lightbox / Gallery styles */
|
||||
.lightbox-overlay {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 0; left: 0; right: 0; bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.95);
|
||||
z-index: 1000;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
padding: 20px;
|
||||
}
|
||||
.lightbox-overlay.active { display: flex; }
|
||||
.lightbox-close {
|
||||
position: absolute;
|
||||
top: 20px; right: 24px;
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--text-secondary);
|
||||
font-size: 2rem;
|
||||
cursor: pointer;
|
||||
padding: 8px;
|
||||
line-height: 1;
|
||||
transition: color 0.2s ease;
|
||||
z-index: 1002;
|
||||
}
|
||||
.lightbox-close:hover { color: var(--text-primary); }
|
||||
.lightbox-content {
|
||||
position: relative;
|
||||
max-width: 90vw;
|
||||
max-height: 80vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.lightbox-image {
|
||||
max-width: 100%;
|
||||
max-height: 80vh;
|
||||
object-fit: contain;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.lightbox-nav {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
background: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
color: var(--text-primary);
|
||||
font-size: 1.5rem;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
transition: all 0.2s ease;
|
||||
z-index: 1001;
|
||||
}
|
||||
.lightbox-nav:hover { background: var(--accent-blue); border-color: var(--accent-blue); }
|
||||
.lightbox-nav:disabled { opacity: 0.3; cursor: not-allowed; }
|
||||
.lightbox-nav:disabled:hover { background: var(--bg-card); border-color: var(--border-color); }
|
||||
.lightbox-prev { left: -60px; }
|
||||
.lightbox-next { right: -60px; }
|
||||
.lightbox-counter {
|
||||
margin-top: 16px;
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.9rem;
|
||||
text-align: center;
|
||||
}
|
||||
.lightbox-dots {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin-top: 12px;
|
||||
justify-content: center;
|
||||
}
|
||||
.lightbox-dot {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 50%;
|
||||
background: var(--border-color);
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s ease;
|
||||
}
|
||||
.lightbox-dot:hover { background: var(--text-muted); }
|
||||
.lightbox-dot.active { background: var(--accent-light); }
|
||||
|
||||
/* Mobile lightbox adjustments */
|
||||
@media (max-width: 768px) {
|
||||
.lightbox-nav {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
.lightbox-prev { left: 10px; }
|
||||
.lightbox-next { right: 10px; }
|
||||
.lightbox-content {
|
||||
max-width: 95vw;
|
||||
}
|
||||
}
|
||||
|
||||
.app-card-footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 16px 20px;
|
||||
border-top: 1px solid var(--border-color);
|
||||
background: var(--bg-secondary);
|
||||
}
|
||||
.github-link {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
color: var(--text-secondary);
|
||||
text-decoration: none;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 500;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
.github-link:hover { color: var(--accent-light); }
|
||||
.github-link img { width: 18px; height: 18px; opacity: 0.7; }
|
||||
.open-source-badge {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
color: var(--success-green);
|
||||
font-size: 0.8rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
.open-source-badge img { width: 14px; height: 14px; }
|
||||
.stats-section {
|
||||
padding: 60px 0;
|
||||
background: var(--bg-secondary);
|
||||
border-top: 1px solid var(--border-color);
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
}
|
||||
.stats-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||||
gap: 32px;
|
||||
text-align: center;
|
||||
}
|
||||
.stat-item h3 {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(135deg, var(--accent-light), var(--accent-blue));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.stat-item p { color: var(--text-secondary); font-size: 0.95rem; }
|
||||
.cta-section { padding: 80px 0; text-align: center; }
|
||||
.cta-section h2 { font-size: 2rem; margin-bottom: 16px; }
|
||||
.cta-section p { color: var(--text-secondary); max-width: 600px; margin: 0 auto 32px; }
|
||||
.cta-button {
|
||||
display: inline-block;
|
||||
padding: 14px 32px;
|
||||
background: linear-gradient(135deg, var(--accent-blue), var(--accent-light));
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
border-radius: 8px;
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
|
||||
footer {
|
||||
padding: 40px 0;
|
||||
border-top: 1px solid var(--border-color);
|
||||
text-align: center;
|
||||
color: var(--text-muted);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.page-header { padding: 120px 0 40px; }
|
||||
.disclaimer-banner { padding: 20px; }
|
||||
.app-grid { grid-template-columns: 1fr; }
|
||||
}
|
||||
|
||||
/* --- Hamburger Button --- */
|
||||
.hamburger {
|
||||
display: none;
|
||||
background: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
padding: 8px;
|
||||
z-index: 200;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
.hamburger-box {
|
||||
width: 28px;
|
||||
height: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.hamburger-line {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background: var(--text-primary);
|
||||
border-radius: 2px;
|
||||
transition: transform 0.3s ease, opacity 0.3s ease;
|
||||
transform-origin: center;
|
||||
}
|
||||
|
||||
/* Hamburger → X animation */
|
||||
.hamburger.is-active .hamburger-line:nth-child(1) {
|
||||
transform: translateY(9px) rotate(45deg);
|
||||
}
|
||||
.hamburger.is-active .hamburger-line:nth-child(2) {
|
||||
opacity: 0;
|
||||
}
|
||||
.hamburger.is-active .hamburger-line:nth-child(3) {
|
||||
transform: translateY(-9px) rotate(-45deg);
|
||||
}
|
||||
|
||||
/* --- Mobile Menu Overlay --- */
|
||||
.mobile-overlay {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 0; left: 0; right: 0; bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
z-index: 140;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
.mobile-overlay.is-visible {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* --- Mobile Nav Styles --- */
|
||||
@media (max-width: 900px) {
|
||||
.hamburger {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: -280px;
|
||||
width: 280px;
|
||||
height: 100vh;
|
||||
height: 100dvh;
|
||||
background: var(--bg-secondary);
|
||||
border-left: 1px solid var(--border-color);
|
||||
padding: 80px 32px 32px;
|
||||
gap: 0;
|
||||
z-index: 150;
|
||||
transition: right 0.3s ease;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.nav-links.is-open {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.nav-links li {
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
.nav-links a {
|
||||
display: block;
|
||||
padding: 16px 0;
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
.mobile-overlay {
|
||||
display: block;
|
||||
pointer-events: none;
|
||||
}
|
||||
.mobile-overlay.is-visible {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
/* Prevent body scroll when menu is open */
|
||||
body.menu-open {
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<body class="page-alkalmazasok">
|
||||
<nav>
|
||||
<div class="container">
|
||||
<a href="/" class="logo">
|
||||
<img src="/assets/logo.png" alt="Felhom logo">
|
||||
<img src="/assets/logo.png" alt="Felhom.eu logo">
|
||||
<span class="logo-text">felhom.eu</span>
|
||||
</a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="/#szolgaltatasok">Szolgáltatások</a></li>
|
||||
<li><a href="/alkalmazasok" class="active">Alkalmazások</a></li>
|
||||
<li><a href="/technologiak">Technológiák</a></li>
|
||||
<li><a href="/biztonsagimentes">Biztonsági mentés</a></li>
|
||||
<li><a href="/biztonsagimentes">Mentések</a></li>
|
||||
<li><a href="/gyik">GYIK</a></li>
|
||||
<li><a href="/kapcsolat">Kapcsolat</a></li>
|
||||
</ul>
|
||||
@@ -464,7 +75,7 @@
|
||||
<h1>Telepíthető <span>Alkalmazások</span></h1>
|
||||
<p>Válassz a nyílt forráskódú alkalmazások széles kínálatából. Mindegyik ingyenes, közösség által fejlesztett szoftver, amit a saját szervereden futtathatsz.</p>
|
||||
<div class="disclaimer-banner">
|
||||
<h3>ℹ️ Fontos tudnivalók</h3>
|
||||
<h3><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-info"/></svg> Fontos tudnivalók</h3>
|
||||
<ul>
|
||||
<li>Az alkalmazások <strong>nyílt forráskódúak</strong> – bárki ellenőrizheti a működésüket, nincs rejtett funkció</li>
|
||||
<li>Szolgáltatásunk az alkalmazások <strong>telepítésére</strong> terjed ki, nem azok fejlesztésére vagy értékesítésére</li>
|
||||
@@ -482,7 +93,7 @@
|
||||
<!-- ==================== -->
|
||||
<div class="category-section" id="fajlkezeles">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">📁</span>
|
||||
<span class="category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-folder"/></svg></span>
|
||||
<h2>Fájlkezelés & Irodai</h2>
|
||||
<span class="app-count">7 alkalmazás</span>
|
||||
</div>
|
||||
@@ -607,7 +218,7 @@
|
||||
<!-- ==================== -->
|
||||
<div class="category-section" id="media">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">📺</span>
|
||||
<span class="category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-tv"/></svg></span>
|
||||
<h2>Média & Szórakozás</h2>
|
||||
<span class="app-count">13 alkalmazás</span>
|
||||
</div>
|
||||
@@ -657,7 +268,7 @@
|
||||
</div>
|
||||
<div class="app-card-footer">
|
||||
<a href="https://github.com/plexinc" target="_blank" rel="noopener" class="github-link"><img src="/assets/github.svg" alt="GitHub">Weboldal</a>
|
||||
<span class="open-source-badge" style="color: var(--warning-orange);"><img src="/assets/checkmark-yellow.svg" alt="">Freemium</span>
|
||||
<span class="open-source-badge" style="color: var(--warn);"><img src="/assets/checkmark-yellow.svg" alt="">Freemium</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Emby -->
|
||||
@@ -673,7 +284,7 @@
|
||||
</div>
|
||||
<div class="app-card-footer">
|
||||
<a href="https://github.com/MediaBrowser/Emby" target="_blank" rel="noopener" class="github-link"><img src="/assets/github.svg" alt="GitHub">Forráskód</a>
|
||||
<span class="open-source-badge" style="color: var(--warning-orange);"><img src="/assets/checkmark-yellow.svg" alt="">Freemium</span>
|
||||
<span class="open-source-badge" style="color: var(--warn);"><img src="/assets/checkmark-yellow.svg" alt="">Freemium</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Navidrome -->
|
||||
@@ -828,7 +439,7 @@
|
||||
<!-- ==================== -->
|
||||
<div class="category-section" id="otthon">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">🏠</span>
|
||||
<span class="category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-home"/></svg></span>
|
||||
<h2>Otthon & Életmód</h2>
|
||||
<span class="app-count">11 alkalmazás</span>
|
||||
</div>
|
||||
@@ -1017,7 +628,7 @@
|
||||
<!-- ==================== -->
|
||||
<div class="category-section" id="produktivitas">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">📊</span>
|
||||
<span class="category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-chart-column"/></svg></span>
|
||||
<h2>Produktivitás & Tudáskezelés</h2>
|
||||
<span class="app-count">9 alkalmazás</span>
|
||||
</div>
|
||||
@@ -1174,7 +785,7 @@
|
||||
<!-- ==================== -->
|
||||
<div class="category-section" id="rendszer">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">🔧</span>
|
||||
<span class="category-icon"><svg class="ico-lg" aria-hidden="true"><use href="/assets/icons.svg?v=1#i-wrench"/></svg></span>
|
||||
<h2>Rendszer & Fejlesztés</h2>
|
||||
<span class="app-count">9 alkalmazás</span>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user