Skip to content

Commit

Permalink
updating sorting and limiting of services, improve service dummy content
Browse files Browse the repository at this point in the history
  • Loading branch information
JugglerX committed Jun 27, 2022
1 parent 0bfe07c commit d46a072
Show file tree
Hide file tree
Showing 25 changed files with 708 additions and 588 deletions.
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["esbenp.prettier-vscode", "stylelint.vscode-stylelint"]
}
19 changes: 19 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"[json]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": "vscode.html-language-features"
},
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/bower_components": true,
"**/tmp": true,
"**/_site": true,
"**/.jekyll-cache": true
},
"editor.tabSize": 2
}
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
source "https://rubygems.org"

gem "jekyll"
gem "webrick", "~> 1.7"
gem "jekyll", "~> 4.2"
gem "jekyll-environment-variables"
42 changes: 26 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Jekyll Serif Theme

Serif is a modern business theme for Jekyll. It contains multiple content types for a typical business website. The theme is fully responsive, blazing fast and artfully illustrated.
Serif is a modern business theme for Jekyll. It contains multiple content types for a typical brochure/marketing website. The theme is fully responsive, blazing fast and artfully illustrated.

[Live Demo](https://jekyll-serif.netlify.app/) |
[Live Demo](https://jekyll-serif.netlify.app/) |
[Zerostatic Themes](https://www.zerostatic.io)

<a href="https://www.buymeacoffee.com/zerostatic" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
Expand All @@ -17,10 +17,9 @@ Serif is a modern business theme for Jekyll. It contains multiple content types
- Team (Collection)
- Features (Data)
- SCSS
- Responsive design
- Responsive hamburger and slide in menu
- Bootstrap 4.6
- Only the bootstrap grid and utilites are imported by default. If you want to use more of the Boostrap library you can uncomment the `@import` in `style.scss`
- Beautifully offset illustrations in the hero section, can be substitued with regular images/photos as well
- 100% Responsive design, animated hamburger and mobile slide in menu
- Bootstrap 4.6 - **Only the bootstrap grid and utilites are imported by default. If you want to use more of the Boostrap library you can uncomment the `@import` in `style.scss`**
- 100/100 Google Lighthouse speed score
- 100/100 Google Lighthouse seo score
- 100/100 Google Lighthouse accessibility score
Expand All @@ -30,11 +29,10 @@ Serif is a modern business theme for Jekyll. It contains multiple content types
- Robust example content included
- Royalty free illustrations included


## Installation

### Installing Ruby & Jekyll

If this is your first time using Jekyll, please follow the [Jekyll docs](https://jekyllrb.com/docs/installation/) and make sure your local environment (including Ruby) is setup correctly.

### Installing Theme
Expand All @@ -45,16 +43,16 @@ To run the theme locally, navigate to the theme directory and run:

```
bundle install
```
```

To start the Jekyll local development server.

```
bundle exec jekyll serve
```
```

To build the theme.

```
bundle exec jekyll build
```
Expand All @@ -68,6 +66,7 @@ Use Netlify to deploy this theme. This theme contains a valid and tested `netlif
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/zerostaticthemes/jekyll-serif-theme)

### Github Pages

This theme has been tested to work with Github Pages (and Github Project Pages). When using Github Pages you will need to update the `baseurl` in the `_config.yml` otherwise all the css, images and paths will be broken.

For example the site https://zerostaticthemes.github.io/jekyll-serif-theme would have `baseurl: "/jekyll-serif-theme/"`
Expand All @@ -79,15 +78,26 @@ For example the site https://zerostaticthemes.github.io/jekyll-serif-theme would
- You cannot create ports of this theme
- You cannot re-sell this theme

### Credits
### Credits

- Beautiful royalty free Illustrations by Icons8 - https://icons8.com/illustrations/style--pixeltrue
- Stock images by Unsplash - https://unsplash.com/
- Feature icons by Noun Project - https://thenounproject.com/

### Other Jekyll Themes by Zerostatic
## Support My Work

I've been building open source themes for all the main static site generators for over 4 years now. My premium themes allow me to continue to allocate time to maintain, improve and build new open source themes.

1. Leave a star ⭐🙏🏻
2. Mention this theme on twitter [@zerostaticio](https://twitter.com/zerostaticio) 📢
3. Purchase a premium theme 🔥

### All Jekyll Themes by Zerostatic

- [Jekyll Serif](https://github.com/zerostaticthemes/jekyll-serif-theme)
- [Jekyll Advance](https://www.zerostatic.io/theme/jekyll-advance/)
- [Jekyll Serif (Open Source)](https://www.zerostatic.io/theme/jekyll-serif/)
- [Jekyll Atlantic (Open Source)](https://www.zerostatic.io/theme/jekyll-atlantic/)
- [Jekyll Advance (Premium)](https://www.zerostatic.io/theme/jekyll-advance/)
- [Jekyll Origin (Premium)](https://www.zerostatic.io/theme/jekyll-origin/)
- [Jekyll Curate (Premium)](https://www.zerostatic.io/theme/jekyll-curate/)

🇦🇺 **Made in Australia** by Robert Austin - leave a star mate!
🇦🇺 **Made in Australia** by Robert Austin
6 changes: 4 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ logo:
desktop_height: "32px"
desktop_width: "120px"

home:
limit_services: 6

collections:
services:
output: true
sort_by: weight
team:
output: true

Expand All @@ -29,9 +33,7 @@ defaults:
layout: "team"

sass:
indentWidth: 4
style: compressed # possible values: nested expanded compact compressed
precision: 10

plugins:
- jekyll-environment-variables
Expand Down
4 changes: 2 additions & 2 deletions _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
<div class="strip">
<div class="container pt-6 pb-6 pb-md-10">
<div class="row justify-content-start">
{% assign weighted_services = site.services | sort: "weight" %}
{% for service in weighted_services %}
{% assign limit = site.home.limit_services | default: 6 %}
{% for service in site.services limit: limit %}
<div class="col-12 col-md-4 mb-1">
<div class="service service-summary">
<div class="service-content">
Expand Down
3 changes: 1 addition & 2 deletions _layouts/services.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@

<div class="container pt-6 pb-6">
<div class="row">
{% assign weighted_services = site.services | sort: "weight" %}
{% for service in weighted_services %}
{% for service in site.services %}
<div class="col-12 col-md-6 mb-3">
<div class="service service-summary">
<div class="service-content">
Expand Down
47 changes: 25 additions & 22 deletions _services/accounting.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
---
title: "Accounting"
date: 2018-11-18T12:33:46+10:00
featured: true
weight: 1
---

Financial accounting (or financial accountancy) is the field of accounting concerned with the **summary, analysis and reporting** of financial transactions related to a business.

![Accounting Services](/images/austin-distel-nGc5RT2HmF0-unsplash.jpg)

# Objectives
# Objectives

Financial accounting and financial reporting are often used as synonyms.

Expand All @@ -19,9 +18,9 @@ Financial accounting and financial reporting are often used as synonyms.

## Relevance

Relevance is the capacity of the financial information to influence the decision of its users. The ingredients of relevance are the predictive value and confirmatory value. Materiality is a sub-quality of relevance.
Relevance is the capacity of the financial information to influence the decision of its users. The ingredients of relevance are the predictive value and confirmatory value. Materiality is a sub-quality of relevance.

> The ingredients of relevance are the predictive value and confirmatory value.
> The ingredients of relevance are the predictive value and confirmatory value.
Information is considered material if its omission or misstatement could influence the economic decisions of users taken on the basis of the financial statements.

Expand All @@ -32,50 +31,54 @@ Faithful representation means that the actual effects of the transactions shall
## Enhancing Qualitative Characteristics

### Verifiability

Verifiability implies consensus between the different knowledgeable and independent users of financial information. Such information must be supported by sufficient evidence to follow the principle of objectivity.

### Comparability

Comparability is the uniform application of accounting methods across entities in the same industry. The principle of consistency is under comparability. Consistency is the uniform application of accounting across points in time within an entity.

### Understandability

Understandability means that accounting reports should be expressed as clearly as possible and should be understood by those to whom the information is relevant.
Timeliness: Timeliness implies that financial information must be presented to the users before a decision is to be made.

---

## Statement of cash flows
The statement of cash flows considers the inputs and outputs in concrete cash within a stated period. The general template of a cash flow statement is as follows: Cash Inflow - Cash Outflow + Opening Balance = Closing Balance

Cash Inflow | Outflow | Opening Balance
--- | --- | ---
*Monday* | `Tuesday` | **Wednesday**
1 | 2 | 3
The statement of cash flows considers the inputs and outputs in concrete cash within a stated period. The general template of a cash flow statement is as follows: Cash Inflow - Cash Outflow + Opening Balance = Closing Balance

| Cash Inflow | Outflow | Opening Balance |
| ----------- | --------- | --------------- |
| _Monday_ | `Tuesday` | **Wednesday** |
| 1 | 2 | 3 |

**Example 1:** in the beginning of September, Ellen started out with $5 in her bank account. During that same month, Ellen borrowed $20 from Tom. At the end of the month, Ellen bought a pair of shoes for $7. Ellen's cash flow statement for the month of September looks like this:

* Cash inflow: $20
* Cash outflow:$7
* Opening balance: $5
* Closing balance: $20 – $7 + $5 = $18
- Cash inflow: $20
- Cash outflow:$7
- Opening balance: $5
- Closing balance: $20 – $7 + $5 = $18

**Example 2:** in the beginning of June, WikiTables, a company that buys and resells tables, sold 2 tables. They'd originally bought the tables for $25 each, and sold them at a price of $50 per table. The first table was paid out in cash however the second one was bought in credit terms. WikiTables' cash flow statement for the month of June looks like this:

> **Important:** the cash flow statement only considers the exchange of actual cash, and ignores what the person in question owes or is owed.
## Statement of financial position (balance sheet)
The balance sheet is the financial statement showing a firm's assets, liabilities and equity (capital) at a set point in time, usually the end of the fiscal year reported on the accompanying income statement.

The balance sheet is the financial statement showing a firm's assets, liabilities and equity (capital) at a set point in time, usually the end of the fiscal year reported on the accompanying income statement.

- **fixed assets**
- property
- building
- equipment (such as factory machinery)
- property
- building
- equipment (such as factory machinery)
- **intangible assets**
- copyrights
- trademarks
- patents
- pending
- international
- copyrights
- trademarks
- patents
- pending
- international
- goodwill

Owner's equity, sometimes referred to as net assets, is represented differently depending on the type of business ownership. Business ownership can be in the form of a sole proprietorship, partnership, or a corporation. For a corporation, the owner's equity portion usually shows common stock, and retained earnings (earnings kept in the company). Retained earnings come from the retained earnings statement, prepared prior to the balance sheet.
Loading

0 comments on commit d46a072

Please sign in to comment.