Fix docker compose and deploy
This commit is contained in:
10
_includes/about.html
Normal file
10
_includes/about.html
Normal file
@ -0,0 +1,10 @@
|
||||
<div class="remove-container container-block">
|
||||
<h2 class="container-block-title">
|
||||
About Theme
|
||||
</h2>
|
||||
<ul class="list-unstyled interests-list">
|
||||
<li><a target="_blank" href="https://www.youtube.com/watch?v=Jnmj1dXDbNk">How to use?</a></li>
|
||||
<li><a class="github-button" href="https://github.com/sharu725/online-cv" data-icon="octicon-star" data-show-count="true" aria-label="Star sharu725/online-cv on GitHub">Star</a>
|
||||
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
||||
</ul>
|
||||
</div><!--//About-->
|
16
_includes/analytics.html
Normal file
16
_includes/analytics.html
Normal file
@ -0,0 +1,16 @@
|
||||
<!-- Analytics -->
|
||||
<script>
|
||||
(function (i, s, o, g, r, a, m) {
|
||||
i['GoogleAnalyticsObject'] = r;
|
||||
i[r] = i[r] || function () {
|
||||
(i[r].q = i[r].q || []).push(arguments)
|
||||
}, i[r].l = 1 * new Date();
|
||||
a = s.createElement(o),
|
||||
m = s.getElementsByTagName(o)[0];
|
||||
a.async = 1;
|
||||
a.src = g;
|
||||
m.parentNode.insertBefore(a, m)
|
||||
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
|
||||
ga('create', '{{site.analytics}}', 'auto');
|
||||
ga('send', 'pageview');
|
||||
</script>
|
18
_includes/career-profile.html
Normal file
18
_includes/career-profile.html
Normal file
@ -0,0 +1,18 @@
|
||||
{% assign career-profile = site.data.data.career-profile %}
|
||||
{% if career-profile %}
|
||||
<section class="section summary-section">
|
||||
|
||||
<h2 class="section-title">
|
||||
<span class="fa-stack fa-xs">
|
||||
<i class="fas fa-circle fa-stack-2x"></i>
|
||||
<i class="fas fa-user fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
{{ career-profile.title }}
|
||||
</h2>
|
||||
|
||||
<div class="summary">
|
||||
{{ career-profile.summary | markdownify }}
|
||||
</div><!--//summary-->
|
||||
|
||||
</section><!--//section-->
|
||||
{% endif %}
|
48
_includes/certifications.html
Normal file
48
_includes/certifications.html
Normal file
@ -0,0 +1,48 @@
|
||||
{% assign certifications = site.data.data.certifications %} {% if certifications %}
|
||||
<section class="section certifications-section">
|
||||
<h2 class="section-title">
|
||||
<span class="fa-stack fa-xs">
|
||||
<i class="fas fa-circle fa-stack-2x"></i>
|
||||
<i class="fas fa-graduation-cap fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
{{ certifications.title }}
|
||||
</h2>
|
||||
|
||||
{% for certifications in certifications.list %}
|
||||
<div class="item">
|
||||
<div class="meta">
|
||||
<div class="upper-row">
|
||||
<h3 class="cert-title">{{ certifications.name }}</h3>
|
||||
<div class="time">
|
||||
{{ certifications.start }} {% if certifications.end %} - {{
|
||||
certifications.end }} {% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<!--//upper-row-->
|
||||
|
||||
<div class="second-upper-row">
|
||||
<div class="cert-org">
|
||||
{{ certifications.organization }} {% if certifications.credentialid %}
|
||||
({{ certifications.credentialid }}) {% endif %}
|
||||
</div>
|
||||
{% if certifications.credentialurl %}
|
||||
<div class="cert-url">
|
||||
<a
|
||||
href="//{{ certifications.credentialurl }}"
|
||||
target="_blank"
|
||||
rel="noreferrer nofollow noopener"
|
||||
>{{ certifications.credentialname }}</a
|
||||
>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<!--//meta-->
|
||||
|
||||
<div class="details">{{ certifications.details | markdownify }}</div>
|
||||
</div>
|
||||
<!--//item-->
|
||||
{% endfor %}
|
||||
</section>
|
||||
<!--//section-->
|
||||
{% endif %}
|
101
_includes/contact.html
Normal file
101
_includes/contact.html
Normal file
@ -0,0 +1,101 @@
|
||||
<div class="contact-container container-block">
|
||||
<ul class="list-unstyled contact-list">
|
||||
|
||||
{% if sidebar.email %}
|
||||
<li class="email"><i class="fas fa-envelope"></i>
|
||||
<a href="mailto:{{ sidebar.email }}">{{ sidebar.email }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.phone %}
|
||||
<li class="phone"><i class="fas fa-phone"></i>
|
||||
<a href="tel:{{ sidebar.phone }}">{{ sidebar.phone }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.citizenship %}
|
||||
<li class="phone"><i class="fas fa-passport"></i>
|
||||
<a href="">{{ sidebar.citizenship }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.timezone %}
|
||||
<li class="timezone"><i class="fas fa-clock"></i>
|
||||
<a href="">{{ sidebar.timezone }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.telegram %}
|
||||
<li class="telegram"><i class="fab fa-telegram"></i>
|
||||
<a href="https://t.me/{{ sidebar.telegram }}" target="_blank">{{ sidebar.telegram }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.website %}
|
||||
<li class="website"><i class="fas fa-globe-americas"></i>
|
||||
<a href="http://{{ sidebar.website }}" target="_blank">{{ sidebar.website }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.linkedin %}
|
||||
<li class="linkedin"><i class="fab fa-linkedin"></i>
|
||||
<a href="https://linkedin.com/in/{{ sidebar.linkedin }}" target="_blank">{{ sidebar.linkedin }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.xing %}
|
||||
<li class="xing"><i class="fab fa-xing"></i>
|
||||
<a href="https://www.xing.com/profile/{{ sidebar.xing }}" target="_blank">{{ sidebar.xing }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.github %}
|
||||
<li class="github"><i class="fab fa-github"></i>
|
||||
<a href="http://github.com/{{ sidebar.github }}" target="_blank">{{ sidebar.github }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.gitlab %}
|
||||
<li class="gitlab"><i class="fab fa-gitlab"></i>
|
||||
<a href="http://gitlab.com/{{ sidebar.gitlab }}" target="_blank">{{ sidebar.gitlab }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.bitbucket %}
|
||||
<li class="bitbucket"><i class="fab fa-bitbucket"></i>
|
||||
<a href="http://bitbucket.com/{{ sidebar.bitbucket }}" target="_blank">{{ sidebar.bitbucket }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.twitter %}
|
||||
<li class="twitter"><i class="fab fa-twitter"></i>
|
||||
<a href="https://twitter.com/{{ sidebar.twitter }}" target="_blank">{{ sidebar.twitter }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.stack-overflow %}
|
||||
<li class="stack-overflow"><i class="fab fa-stack-overflow"></i>
|
||||
<a href="https://stackoverflow.com/users/{{ sidebar.stack-overflow }}" target="_blank">{{ sidebar.stack-overflow }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.codewars %}
|
||||
<li class="codewars"><i class="fas fa-code"></i>
|
||||
<a href="https://www.codewars.com/users/{{ sidebar.codewars }}/completed_solutions" target="_blank">{{ sidebar.codewars }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.goodreads %}
|
||||
<li class="goodreads-g"><i class="fab fa-goodreads-g"></i>
|
||||
<a href="https://www.goodreads.com/user/show/{{ sidebar.goodreads }}" target="_blank">{{ sidebar.goodreads }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.pdf %}
|
||||
<li class="pdf"><i class="fas fa-file-pdf"></i>
|
||||
<a href="{{ sidebar.pdf }}" target="_blank">Resume PDF</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
</ul>
|
||||
</div><!--//contact-container-->
|
54
_includes/education.html
Normal file
54
_includes/education.html
Normal file
@ -0,0 +1,54 @@
|
||||
{% assign education = site.data.data.education %}
|
||||
{% if education %}
|
||||
{% if site.data.data.sidebar.education %}
|
||||
<div class="education-container container-block">
|
||||
|
||||
<h2 class="container-block-title">
|
||||
{{ education.title }}
|
||||
</h2>
|
||||
|
||||
{% for graduation in education.info %}
|
||||
<div class="item">
|
||||
<h4 class="degree">{{ graduation.degree }}</h4>
|
||||
<h5 class="meta">{{ graduation.university }}</h5>
|
||||
<div class="time">{{ graduation.time }}</div>
|
||||
</div><!--//item-->
|
||||
{% endfor %}
|
||||
|
||||
</div><!--//education-container-->
|
||||
{% else %}
|
||||
<section class="section educations-section">
|
||||
|
||||
<h2 class="section-title">
|
||||
<span class="fa-stack fa-xs">
|
||||
<i class="fas fa-circle fa-stack-2x"></i>
|
||||
<i class="fas fa-graduation-cap fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
{{ education.title }}
|
||||
</h2>
|
||||
|
||||
{% for graduation in education.info %}
|
||||
<div class="item">
|
||||
|
||||
<div class="meta">
|
||||
|
||||
<div class="upper-row">
|
||||
<h3 class="degree">{{ graduation.degree }}</h3>
|
||||
<div class="time">{{ graduation.time }}</div>
|
||||
</div><!--//upper-row-->
|
||||
|
||||
<div class="university">{{ graduation.university }}</div>
|
||||
</div><!--//meta-->
|
||||
|
||||
{% if graduation.details %}
|
||||
<div class="details">
|
||||
{{ graduation.details | markdownify }}
|
||||
</div><!--//details-->
|
||||
{% endif %}
|
||||
|
||||
</div><!--//item-->
|
||||
{% endfor %}
|
||||
|
||||
</section><!--//section-->
|
||||
{% endif %}
|
||||
{% endif %}
|
37
_includes/experiences.html
Normal file
37
_includes/experiences.html
Normal file
@ -0,0 +1,37 @@
|
||||
{% assign experiences = site.data.data.experiences %}
|
||||
{% if experiences %}
|
||||
<section class="section experiences-section">
|
||||
<h2 class="section-title">
|
||||
<span class="fa-stack fa-xs">
|
||||
<i class="fas fa-circle fa-stack-2x"></i>
|
||||
<i class="fas fa-briefcase fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
{{ experiences.title }}
|
||||
</h2>
|
||||
|
||||
{% for experience in experiences.info %}
|
||||
<div class="item">
|
||||
|
||||
<div class="meta">
|
||||
|
||||
<div class="upper-row">
|
||||
<h3 class="job-title">{{ experience.role }}</h3>
|
||||
<div class="time">{{ experience.time }}</div>
|
||||
</div><!--//upper-row-->
|
||||
|
||||
<div class="company">{{ experience.company }}</div>
|
||||
|
||||
</div><!--//meta-->
|
||||
|
||||
{% if experience.details %}
|
||||
<div class="details">
|
||||
{{ experience.details | markdownify }}
|
||||
</div><!--//details-->
|
||||
{% endif %}
|
||||
|
||||
</div><!--//item-->
|
||||
{% endfor %}
|
||||
|
||||
</section><!--//section-->
|
||||
{% endif %}
|
||||
|
6
_includes/footer.html
Normal file
6
_includes/footer.html
Normal file
@ -0,0 +1,6 @@
|
||||
<footer class="footer">
|
||||
<div class="text-center">
|
||||
<!--/* This template is released under the Creative Commons Attribution 3.0 License. Please keep the attribution link below when using for your own project. Thank you for your support. :) If you'd like to use the template without the attribution, you can check out other license options via our website: themes.3rdwavemedia.com */-->
|
||||
<small class="copyright">{{ site.data.data.footer }}</small>
|
||||
</div><!--//container-->
|
||||
</footer><!--//footer-->
|
30
_includes/head.html
Normal file
30
_includes/head.html
Normal file
@ -0,0 +1,30 @@
|
||||
<head>
|
||||
<title>{{ site.title }}</title>
|
||||
|
||||
<!-- Meta -->
|
||||
<meta charset="utf-8">
|
||||
{% if site.chrome_mobile_color %}
|
||||
<meta name="theme-color" content="{{ site.chrome_mobile_color }}">
|
||||
{% endif%}
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="{{ site.description |default: "A beautiful
|
||||
Jekyll theme for creating resume" }}">
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
|
||||
<!-- Global CSS -->
|
||||
<link rel="stylesheet" href="{{ site.baseurl }}/assets/plugins/bootstrap/css/bootstrap.min.css">
|
||||
|
||||
<!-- Plugins CSS -->
|
||||
<link rel="stylesheet" href="{{ site.baseurl }}/assets/plugins/font-awesome/css/all.css">
|
||||
|
||||
<!-- Theme CSS -->
|
||||
<link id="theme-style" rel="stylesheet" href="{{ site.baseurl }}/assets/css/main.css">
|
||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
22
_includes/interests.html
Normal file
22
_includes/interests.html
Normal file
@ -0,0 +1,22 @@
|
||||
{% assign interests = site.data.data.sidebar.interests %}
|
||||
{% if interests %}
|
||||
<div class="interests-container container-block">
|
||||
|
||||
<h2 class="container-block-title">
|
||||
{{ interests.title }}
|
||||
</h2>
|
||||
|
||||
<ul class="list-unstyled interests-list">
|
||||
{% for interest in interests.info %}
|
||||
|
||||
{% if interest.link %}
|
||||
<li><a href="{{ interest.link }}">{{ interest.item }}</a></li>
|
||||
{% else %}
|
||||
<li>{{ interest.item }}</li>
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
</div><!--//interests-->
|
||||
{% endif %}
|
19
_includes/language.html
Normal file
19
_includes/language.html
Normal file
@ -0,0 +1,19 @@
|
||||
{% assign languages = site.data.data.sidebar.languages %}
|
||||
{% if languages %}
|
||||
<div class="languages-container container-block">
|
||||
|
||||
<h2 class="container-block-title">
|
||||
{{ languages.title }}
|
||||
</h2>
|
||||
|
||||
<ul class="list-unstyled interests-list">
|
||||
{% for language in languages.info %}
|
||||
<li>
|
||||
{{ language.idiom }}
|
||||
<span class="lang-desc">({{ language.level }})</span>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
</div><!--//interests-->
|
||||
{% endif %}
|
40
_includes/oss-contributions.html
Normal file
40
_includes/oss-contributions.html
Normal file
@ -0,0 +1,40 @@
|
||||
{% assign oss = site.data.data.oss %}
|
||||
{% if oss %}
|
||||
<section class="section oss-section">
|
||||
<h2 class="section-title">
|
||||
<span class="fa-stack fa-xs">
|
||||
<i class="fas fa-circle fa-stack-2x"></i>
|
||||
<i class="fas fa-box-open fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
{{ oss.title }}
|
||||
</h2>
|
||||
|
||||
{% if oss.intro %}
|
||||
<div class="intro">
|
||||
<p>{{ oss.intro }}</p>
|
||||
</div>
|
||||
<!--//intro-->
|
||||
{% endif %}
|
||||
|
||||
{% for contribution in oss.contributions %}
|
||||
<div class="item">
|
||||
|
||||
<span class="project-title">
|
||||
{% if contribution.link %}
|
||||
<a href="{{ contribution.link }}" target="_blank">{{ contribution.title }}</a>
|
||||
{% else %}
|
||||
{{ contribution.title }}
|
||||
{% endif %}
|
||||
</span>
|
||||
|
||||
{% if contribution.tagline %}
|
||||
- <span class="project-tagline">{{ contribution.tagline }}</span>
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
<!--//item-->
|
||||
{% endfor %}
|
||||
|
||||
</section>
|
||||
<!--//section-->
|
||||
{% endif %}
|
38
_includes/projects.html
Normal file
38
_includes/projects.html
Normal file
@ -0,0 +1,38 @@
|
||||
{% assign projects = site.data.data.projects %}
|
||||
{% if projects %}
|
||||
<section class="section projects-section">
|
||||
|
||||
<h2 class="section-title">
|
||||
<span class="fa-stack fa-xs">
|
||||
<i class="fas fa-circle fa-stack-2x"></i>
|
||||
<i class="fas fa-archive fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
{{ projects.title }}
|
||||
</h2>
|
||||
|
||||
{% if projects.intro %}
|
||||
<div class="intro">
|
||||
<p>{{ projects.intro }}</p>
|
||||
</div><!--//intro-->
|
||||
{% endif %}
|
||||
|
||||
{% for project in projects.assignments %}
|
||||
<div class="item">
|
||||
|
||||
<span class="project-title">
|
||||
{% if project.link %}
|
||||
<a href="{{ project.link }}" target="_blank">{{ project.title }}</a>
|
||||
{% else %}
|
||||
{{ project.title }}
|
||||
{% endif %}
|
||||
</span>
|
||||
|
||||
{% if project.tagline %}
|
||||
- <span class="project-tagline">{{ project.tagline }}</span>
|
||||
{% endif %}
|
||||
|
||||
</div><!--//item-->
|
||||
{% endfor %}
|
||||
|
||||
</section><!--//section-->
|
||||
{% endif %}
|
32
_includes/publications.html
Normal file
32
_includes/publications.html
Normal file
@ -0,0 +1,32 @@
|
||||
{% assign publications = site.data.data.publications %}
|
||||
{% if publications %}
|
||||
<section class="section publications-section">
|
||||
|
||||
<h2 class="section-title">
|
||||
<span class="fa-stack fa-xs">
|
||||
<i class="fas fa-circle fa-stack-2x"></i>
|
||||
<i class="fas fa-file-alt fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
{{ publications.title }}
|
||||
</h2>
|
||||
|
||||
{% if publications.intro %}
|
||||
<div class="intro">
|
||||
{{ publications.intro | markdownify }}
|
||||
</div><!--//intro-->
|
||||
{% endif %}
|
||||
|
||||
{% for publication in publications.papers %}
|
||||
<div class="item">
|
||||
{% if publication.link %}
|
||||
<li><a href="{{ publication.link }}">{{ publication.title }}</a></li>
|
||||
{% else %}
|
||||
<li>{{ publication.title }}</li>
|
||||
{% endif %}
|
||||
<div class="publication-authors">{{ publication.authors }}</div>
|
||||
<div class="publication-conference">{{ publication.conference }}</div>
|
||||
</div><!--//item-->
|
||||
{% endfor %}
|
||||
|
||||
</section><!--//section-->
|
||||
{% endif %}
|
10
_includes/scripts.html
Normal file
10
_includes/scripts.html
Normal file
@ -0,0 +1,10 @@
|
||||
<!-- Javascript -->
|
||||
<script type="text/javascript" src="{{site.baseurl}}/assets/plugins/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" src="{{site.baseurl}}/assets/plugins/bootstrap/js/bootstrap.min.js"></script>
|
||||
|
||||
<!-- custom js -->
|
||||
<script type="text/javascript" src="{{site.baseurl}}/assets/js/main.js"></script>
|
||||
|
||||
{% if site.analytics %}
|
||||
{% include analytics.html %}
|
||||
{% endif %}
|
33
_includes/sidebar.html
Normal file
33
_includes/sidebar.html
Normal file
@ -0,0 +1,33 @@
|
||||
{% assign sidebar = site.data.data.sidebar %}
|
||||
<div class="sidebar-wrapper">
|
||||
|
||||
<div class="profile-container">
|
||||
|
||||
{% if sidebar.avatar %}
|
||||
<img class="avatar" src="{{ site.baseurl }}/assets/images/{{ sidebar.avatar }}" alt="profile picture" />
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.name %}
|
||||
<h1 class="name">{{ sidebar.name }}</h1>
|
||||
{% endif %}
|
||||
|
||||
{% if sidebar.tagline %}
|
||||
<h3 class="tagline">{{ sidebar.tagline }}</h3>
|
||||
{% endif %}
|
||||
|
||||
</div><!--//profile-container-->
|
||||
|
||||
{% include contact.html %}
|
||||
|
||||
{% if sidebar.education %}
|
||||
{% include education.html %}
|
||||
{% endif %}
|
||||
|
||||
{% include language.html %}
|
||||
{% include interests.html %}
|
||||
|
||||
{% if sidebar.about %}
|
||||
{% include about.html %}
|
||||
{% endif %}
|
||||
|
||||
</div><!--//sidebar-wrapper-->
|
31
_includes/skills.html
Normal file
31
_includes/skills.html
Normal file
@ -0,0 +1,31 @@
|
||||
{% assign skills = site.data.data.skills %}
|
||||
{% if skills %}
|
||||
<section class="skills-section section">
|
||||
|
||||
<h2 class="section-title">
|
||||
<span class="fa-stack fa-xs">
|
||||
<i class="fas fa-circle fa-stack-2x"></i>
|
||||
<i class="fas fa-wrench fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
{{ skills.title }}
|
||||
</h2>
|
||||
|
||||
<div class="skillset">
|
||||
|
||||
{% for skill in skills.toolset %}
|
||||
<div class="item">
|
||||
|
||||
<h3 class="level-title">{{ skill.name }}</h3>
|
||||
|
||||
<div class="level-bar">
|
||||
<div class="level-bar-inner" data-level="{{ skill.level }}">
|
||||
</div>
|
||||
</div><!--//level-bar-->
|
||||
|
||||
</div><!--//item-->
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
|
||||
</section><!--//skills-section-->
|
||||
{% endif %}
|
Reference in New Issue
Block a user