Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
GirishCodeAlchemy authored Jan 6, 2024
0 parents commit 32dedd5
Show file tree
Hide file tree
Showing 9 changed files with 510 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
188 changes: 188 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,188 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
.vscode/*
.DS_Store

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
.pdm.toml

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

##########Golang####################

# Dependency directories (remove the comment below to include it)
vendor/

# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Go workspace file
go.work*

./pkg/



###########nodejs ##############

node_modules
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/* @girishcodealchemy
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Girish V

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# alchemy-template
Template for github repositories
96 changes: 96 additions & 0 deletions docs/columns.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<title>Learning Git and Github</title>
</head>

<body class="bg-primary">
<header id="page-hero" class="d-flex flex-column align-content-between">
<nav class="navbar navbar-expand-md bg-primary navbar-dark text-uppercase">
<div class="container">
<button
type="button"
class="navbar-toggler"
data-bs-toggle="collapse"
data-bs-target="#myTogglerNav"
aria-controls="myTogglerNav"
aria-label="Toggle Navigation"
>
<span class="navbar-toggler-icon"></span>
</button>

<a class="navbar-brand" href="#page-hero"><a class="navbar-brand" href="index.html">Layout</a>
<div class="collapse navbar-collapse" id="myTogglerNav">
<div class="navbar-nav ms-auto font-weight-regular">
<a class="nav-item nav-link text-white" href="index.html">home</a>
<a class="nav-item nav-link" href="columns.html">columns</a>
<a class="nav-item nav-link" href="media.html">media</a>
</div>
</div>
</div>
</nav>

<article id="page-multicolumn" class="page-section vertical-padding bg-white">
<header class="container">
<h2 class="display-4 pt-4 text-center">Multi-column</h2>
<p class="lead mx-md-5">
This layout uses multiple column rules so that how many columns each group takes depends on the width of the browser, by also using the
<code>justify-content-center</code> class on the row, using less than 12 columns results in a centered set of columns. The rules used are
<code>col-10</code>
<code>col-md-6</code>
<code>col-lg-4</code>
<code>col-xl-3</code>.
</p>
</header>

<section class="container family-sans text-uppercase text-center py-4">
<div class="row justify-content-center py-2">
<section class="mb-5 col-10 col-md-6 col-lg-4 col-xl-3">
<img class="img-fluid rounded" src="https://dummyimage.com/800x400/6/f.png&text=A" alt="sample image" />
<h5 class="mt-1">Text Heading</h5>
</section>

<section class="text-center mb-5 col-10 col-md-6 col-lg-4 col-xl-3">
<img class="img-fluid rounded" src="https://dummyimage.com/800x400/6/f.png&text=B" alt="sample image" />
<h5 class="mt-1">Text Heading</h5>
</section>

<section class="text-center mb-5 col-10 col-md-6 col-lg-4 col-xl-3">
<img class="img-fluid rounded" src="https://dummyimage.com/800x400/6/f.png&text=C" alt="sample image" />
<h5 class="mt-1">Text Heading</h5>
</section>

<section class="text-center mb-5 col-10 col-md-6 col-lg-4 col-xl-3">
<img class="img-fluid rounded" src="https://dummyimage.com/800x400/6/f.png&text=D" alt="sample image" />
<h5 class="mt-1">Text Heading</h5>
</section>

<section class="text-center mb-5 col-10 col-md-6 col-lg-4 col-xl-3">
<img class="img-fluid rounded" src="https://dummyimage.com/800x400/6/f.png&text=E" alt="sample image" />
<h5 class="mt-1">Text Heading</h5>
</section>

<section class="text-center mb-5 col-10 col-md-6 col-lg-4 col-xl-3">
<img class="img-fluid rounded" src="https://dummyimage.com/800x400/6/f.png&text=F" alt="sample image" />
<h5 class="mt-1">Text Heading</h5>
</section>

<section class="text-center mb-5 col-10 col-md-6 col-lg-4 col-xl-3">
<img class="img-fluid rounded" src="https://dummyimage.com/800x400/6/f.png&text=G" alt="sample image" />
<h5 class="mt-1">Text Heading</h5>
</section>

<section class="text-center mb-5 col-10 col-md-6 col-lg-4 col-xl-3">
<img class="img-fluid rounded" src="https://dummyimage.com/800x400/6/f.png&text=H" alt="sample image" />
<h5 class="mt-1">Text Heading</h5>
</section>
</div>
</section>
</article>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
</body>
</html>
Loading

0 comments on commit 32dedd5

Please sign in to comment.