Skip to content

Commit

Permalink
Atom blog
Browse files Browse the repository at this point in the history
  • Loading branch information
atomjoy committed Oct 2, 2024
1 parent c98b3d3 commit aa5f4d5
Show file tree
Hide file tree
Showing 123 changed files with 1,640 additions and 46,107 deletions.
Binary file modified atom.zip
Binary file not shown.
30 changes: 23 additions & 7 deletions atom/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Atom Blog - Szablon Wordpress

Minimalistyczny responsywny szablon Wordpress :) bez bloków do dalszej rozbudowy z formularzem kontaktowym, formularzem newslettera, stroną autora, wyszukiwaniem.
Minimalistyczny responsywny szablon Wordpress bez bloków do dalszej rozbudowy z formularzem kontaktowym, formularzem newslettera, stroną autora, wyszukiwaniem.

## Konfiguracja wp-config.php

Expand All @@ -12,11 +12,11 @@ define('SMTP_username', '[email protected]'); // wpisz swój adres e-mail
define('SMTP_password', 'twoje-haslo'); // tu podaje swoje hasło
define('SMTP_server', 'smtp.gmail.com'); // tu podaj swój host serwera poczty
define('SMTP_FROM', '[email protected]'); // wpisz swój adres e-mail dla WordPress
define('SMTP_NAME', 'Biuro'); // tu podaj np. swoje imie
define('SMTP_PORT', '587'); // tu podaj numer portu np. 465 dla SSL lun 587 dla tls
define('SMTP_SECURE', 'tls'); // Szyfrowanie SSL lub TLS
define('SMTP_AUTH', true); // Uwierzytelnienie (true|false)
define('SMTP_DEBUG',0); // dla debugowania błędów 0/1/2
define('SMTP_NAME', 'Biuro'); // tu podaj np. swoje imie
define('SMTP_PORT', '587'); // tu podaj numer portu np. 465 dla SSL lun 587 dla tls
define('SMTP_SECURE', 'tls'); // Szyfrowanie SSL lub TLS
define('SMTP_AUTH', true); // Uwierzytelnienie (true|false)
define('SMTP_DEBUG',0); // dla debugowania błędów 0/1/2

// Social media url
define('SOCIAL_X', 'https://x.com/username');
Expand All @@ -36,9 +36,19 @@ define('DB_COLLATE', '');
define('WP_DEBUG', true);
```

## Włącz boczny panel w functions.php

```php
<?php

// Pokaż boczny panel w pojedyńczym poście
$show_single_sidebar = true;
```

## Koszt szablonu

Cena: 100 EUR do zastosowań komercyjnych.
- Cena: 250 PLN + VAT
- Do zastosowań komercyjnych pod strony www (za każdą stronę internetową).

## Opis plików szablonu Wordpress

Expand All @@ -65,3 +75,9 @@ taxonomy-cars.php – szablon elementów należących do niestandardowej taksono
taxonomy-brands.php – szablon elementów należących do niestandardowej taksonomii (kategorii np. cars).
404.php – szablon strony błęd 404 w WordPress.
```

## Obrazki

<img src="https://raw.githubusercontent.com/atomjoy/atom/refs/heads/main/blog-front.png" width="100%">
<img src="https://raw.githubusercontent.com/atomjoy/atom/refs/heads/main/blog-single-post.png" width="100%">
<img src="https://raw.githubusercontent.com/atomjoy/atom/refs/heads/main/blog-single-post-sidebar.png" width="100%">
15 changes: 7 additions & 8 deletions atom/archive.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<!-- Archive Page -->
<?php
get_header();

<?php get_header(); ?>
get_template_part('include/body', 'header');

<div class="page-wrap">
<div class="container">
<?php get_template_part('include/section', 'archive'); ?>
</div>
</div>
get_template_part('include/body', 'main-archive');

<?php get_footer(); ?>
get_template_part('include/body', 'footer');

get_footer();
1 change: 0 additions & 1 deletion atom/attachment.php

This file was deleted.

15 changes: 7 additions & 8 deletions atom/author.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<!-- Author Page -->
<?php
get_header();

<?php get_header(); ?>
get_template_part('include/body', 'header');

<div class="page-wrap">
<div class="container">
<?php get_template_part('include/section', 'author'); ?>
</div>
</div>
get_template_part('include/body', 'main-author');

<?php get_footer(); ?>
get_template_part('include/body', 'footer');

get_footer();
10 changes: 0 additions & 10 deletions atom/category-blog.php

This file was deleted.

16 changes: 8 additions & 8 deletions atom/category.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<!-- Category Page -->
<?php get_header(); ?>
<?php
get_header();

<div class="page-wrap">
<div class="container">
<?php get_template_part('include/section', 'category'); ?>
</div>
</div>
get_template_part('include/body', 'header');

<?php get_footer(); ?>
get_template_part('include/body', 'main-category');

get_template_part('include/body', 'footer');

get_footer();
Loading

0 comments on commit aa5f4d5

Please sign in to comment.