@rk-web/create 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/create.js +3 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +47 -0
- package/dist/cli.js.map +1 -0
- package/dist/create.d.ts +2 -0
- package/dist/create.d.ts.map +1 -0
- package/dist/create.js +179 -0
- package/dist/create.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/package.json +58 -0
- package/templates/blog/config.json +27 -0
- package/templates/blog/src/assets/styles/main.css +182 -0
- package/templates/blog/src/components/footer.html +10 -0
- package/templates/blog/src/components/header.html +10 -0
- package/templates/blog/src/components/post-card.html +11 -0
- package/templates/blog/src/data/posts.json +28 -0
- package/templates/blog/src/layouts/base.html +24 -0
- package/templates/blog/src/pages/blog/index.html +22 -0
- package/templates/blog/src/pages/blog/post.html +20 -0
- package/templates/blog/src/pages/index.html +29 -0
- package/templates/landing/config.json +28 -0
- package/templates/landing/src/assets/styles/main.css +474 -0
- package/templates/landing/src/components/cta.html +13 -0
- package/templates/landing/src/components/features.html +17 -0
- package/templates/landing/src/components/footer.html +18 -0
- package/templates/landing/src/components/header.html +11 -0
- package/templates/landing/src/components/hero.html +26 -0
- package/templates/landing/src/components/pricing.html +28 -0
- package/templates/landing/src/components/testimonials.html +24 -0
- package/templates/landing/src/data/landing.json +93 -0
- package/templates/landing/src/layouts/base.html +22 -0
- package/templates/landing/src/pages/index.html +12 -0
- package/templates/minimal/config.json +24 -0
- package/templates/minimal/src/assets/styles/main.css +50 -0
- package/templates/minimal/src/components/footer.html +6 -0
- package/templates/minimal/src/components/header.html +8 -0
- package/templates/minimal/src/layouts/base.html +20 -0
- package/templates/minimal/src/pages/index.html +13 -0
- package/templates/minimal/src/scripts/main.ts +2 -0
- package/templates/portfolio/config.json +27 -0
- package/templates/portfolio/src/assets/styles/main.css +289 -0
- package/templates/portfolio/src/components/footer.html +10 -0
- package/templates/portfolio/src/components/header.html +10 -0
- package/templates/portfolio/src/components/project-card.html +24 -0
- package/templates/portfolio/src/data/projects.json +40 -0
- package/templates/portfolio/src/layouts/base.html +23 -0
- package/templates/portfolio/src/pages/index.html +62 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
<!-- layout: layouts/base.html -->
|
|
2
|
+
|
|
3
|
+
<!-- slot: content -->
|
|
4
|
+
<main class="portfolio">
|
|
5
|
+
<!-- Hero Section -->
|
|
6
|
+
<section class="hero" id="hero">
|
|
7
|
+
<div class="container">
|
|
8
|
+
<h1>Привет, я {{ site.author }}</h1>
|
|
9
|
+
<p class="subtitle">{{ site.description }}</p>
|
|
10
|
+
<div class="hero-buttons">
|
|
11
|
+
<a href="#projects" class="btn btn-primary">Смотреть проекты</a>
|
|
12
|
+
<a href="#contact" class="btn btn-secondary">Связаться</a>
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</section>
|
|
16
|
+
|
|
17
|
+
<!-- Projects Section -->
|
|
18
|
+
<section class="projects" id="projects">
|
|
19
|
+
<div class="container">
|
|
20
|
+
<h2>Мои проекты</h2>
|
|
21
|
+
<div class="projects-grid">
|
|
22
|
+
<!-- for: project in portfolio.projects -->
|
|
23
|
+
<article class="project-card">
|
|
24
|
+
<div class="project-image">
|
|
25
|
+
<a href="{{ project.url }}">
|
|
26
|
+
<img src="{{ project.image }}" alt="{{ project.title }}" loading="lazy">
|
|
27
|
+
</a>
|
|
28
|
+
</div>
|
|
29
|
+
<div class="project-info">
|
|
30
|
+
<h3 class="project-title">
|
|
31
|
+
<a href="{{ project.url }}">{{ project.title }}</a>
|
|
32
|
+
</h3>
|
|
33
|
+
<p class="project-description">{{ project.description }}</p>
|
|
34
|
+
<div class="project-tags">
|
|
35
|
+
<!-- for: tag in project.tags -->
|
|
36
|
+
<span class="tag">{{ tag }}</span>
|
|
37
|
+
<!-- endfor -->
|
|
38
|
+
</div>
|
|
39
|
+
<div class="project-links">
|
|
40
|
+
<a href="{{ project.url }}" class="btn btn-primary">Посмотреть</a>
|
|
41
|
+
<!-- if: project.github -->
|
|
42
|
+
<a href="{{ project.github }}" class="btn btn-secondary" target="_blank" rel="noopener">GitHub</a>
|
|
43
|
+
<!-- endif -->
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</article>
|
|
47
|
+
<!-- endfor -->
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
</section>
|
|
51
|
+
|
|
52
|
+
<!-- Contact Section -->
|
|
53
|
+
<section class="contact" id="contact">
|
|
54
|
+
<div class="container">
|
|
55
|
+
<h2>Связаться со мной</h2>
|
|
56
|
+
<p>Открыт для новых проектов и сотрудничества</p>
|
|
57
|
+
<a href="mailto:{{ site.email }}" class="btn btn-primary">{{ site.email }}</a>
|
|
58
|
+
</div>
|
|
59
|
+
</section>
|
|
60
|
+
</main>
|
|
61
|
+
|
|
62
|
+
<!-- data-define: portfolio = src/data/projects.json -->
|